forked from admob-plus/admob-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
131 lines (131 loc) · 4.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "admob-plus-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "is-ci || lefthook install",
"prepare": "run-s 'prepare:*'",
"prepare:ts": "tsc -b --verbose",
"prepare:lerna": "lerna run prepare",
"prepublishOnly": "del '*.tsbuildinfo' 'packages/*/*.tsbuildinfo'",
"test": "run-s 'test:*'",
"test:pkgs": "lerna run test",
"test:jest": "jest",
"lint": "eslint --cache --ext .js,.jsx,.ts,tsx .",
"gen": "yarn workspace @admob-plus-internal/cli run gen",
"test-android": "run-s 'test-android:*'",
"//test-android:testbed": "cordova-testbed --platform android --plugin packages/cordova --build-only",
"test-ios": "run-s 'test-ios:*'",
"test-ios:lint": "node-swiftlint --path packages/cordova/src/ios",
"//test-ios:testbed": "cordova-testbed --platform ios --plugin packages/cordova --build-only"
},
"devDependencies": {
"@admob-plus-internal/cli": "file:./internal/cli",
"@admob-plus-internal/tsconfig": "file:./internal/tsconfig",
"@arkweid/lefthook": "^0.7.6",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@commitlint/prompt-cli": "^13.1.0",
"@ionic-native/admob-plus": "^5.36.0",
"@types/cordova": "^0.0.34",
"@types/jest": "^27.0.2",
"@types/node": "^16.10.1",
"@types/xml2js": "^0.4.9",
"canvas": "^2.8.0",
"cordova": "10.0.0",
"cordova-testbed": "^0.8.0",
"del-cli": "^3.0.1",
"eslint": "^7.32.0",
"eslint-config-concise": "^0.40.1",
"eslint-config-concise-browser": "^0.40.1",
"eslint-config-concise-esnext": "^0.40.1",
"eslint-config-concise-typescript": "^0.40.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.26.0",
"eslint-plugin-unicorn": "^36.0.0",
"execa": "^5.1.1",
"ionic-angular": "^3.9.10",
"is-ci": "^3.0.0",
"jest": "^27.2.1",
"lerna": "^4.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-eslint-cli": "^5.0.1",
"remark-cli": "^9.0.0",
"remark-lint-are-links-valid-duplicate": "^0.2.2",
"remark-lint-heading-whitespace": "^1.0.0",
"remark-lint-no-empty-sections": "^4.0.0",
"remark-lint-no-trailing-spaces": "^2.0.1",
"remark-preset-lint-consistent": "^4.0.0",
"remark-preset-lint-markdown-style-guide": "^4.0.0",
"remark-preset-lint-recommended": "^5.0.0",
"swiftlint": "^1.0.1",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "~4.4.3"
},
"repository": "admob-plus/admob-plus",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended",
"remark-preset-lint-consistent",
"remark-preset-lint-markdown-style-guide",
"remark-lint-are-links-valid-duplicate",
"remark-lint-heading-whitespace",
"remark-lint-no-empty-sections"
]
},
"dependenciesMeta": {
"@angular/compiler-cli": {
"unplugged": true
},
"core-js": {
"built": false
},
"core-js-pure": {
"built": false
},
"fsevents": {
"built": false
},
"metro-runtime": {
"unplugged": true
},
"native-run": {
"unplugged": true
},
"react-native-codegen": {
"unplugged": true
}
},
"resolutions": {
"@admob-plus-internal/cli": "workspace:*",
"@admob-plus-internal/rollup-config": "workspace:*",
"@admob-plus-internal/tsconfig": "workspace:*",
"@admob-plus/capacitor": "link:./packages/capacitor",
"@admob-plus/ionic": "workspace:*",
"@admob-plus/react-native": "workspace:*",
"@types/node": "^16.10.1",
"@types/react": "17.0.5",
"@typescript-eslint/parser": "^4.24.0",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"admob-plus-cordova": "workspace:*",
"admob-plus-cordova-native": "workspace:*",
"admob-plus": "workspace:*",
"cordova-plugin-consent": "workspace:*",
"pkg-proxy": "workspace:*"
},
"workspaces": [
"examples/*",
"!examples/ionic3",
"internal/*",
"packages/*",
"website"
]
}