forked from admob-plus/admob-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.14 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
{
"name": "admob-plus-monorepo",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "is-ci || lefthook install",
"prepare": "nx build .",
"prepublishOnly": "nx clean .",
"clean": "del '*.tsbuildinfo' 'packages/*/*.tsbuildinfo'",
"test": "nx test .",
"fmt": "cordova-plus fmt examples/{cordova,cordova-consent,ionic-angular,ionic3,playground}",
"lint": "gts lint",
"gen": "nx gen internal-cli",
"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",
"build": "nx build ."
},
"devDependencies": {
"@admob-plus-internal/cli": "file:./internal/cli",
"@admob-plus-internal/tsconfig": "file:./internal/tsconfig",
"@evilmartians/lefthook": "^1.1.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/config-lerna-scopes": "^17.0.2",
"@commitlint/prompt-cli": "^17.0.3",
"@ionic-native/admob-plus": "^5.36.0",
"@nrwl/jest": "^14.5.6",
"@nrwl/node": "^14.5.6",
"@nrwl/workspace": "^14.5.6",
"@types/cordova": "^0.0.34",
"@types/jest": "^28.1.6",
"@types/node": "^18.7.3",
"@types/xml2js": "^0.4.11",
"cordova": "11.0.0",
"cordova-plus": "^0.7.0",
"cordova-testbed": "^0.8.0",
"del-cli": "^5.0.0",
"gts": "^3.1.0",
"ionic-angular": "^3.9.10",
"is-ci": "^3.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lerna": "^5.4.2",
"npm-run-all": "^4.1.5",
"nx": "14.5.6",
"remark-cli": "^11.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": "^5.1.1",
"remark-preset-lint-markdown-style-guide": "^5.1.2",
"remark-preset-lint-recommended": "^6.1.2",
"swiftlint": "^1.0.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "~4.7.4"
},
"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"
]
},
"packageManager": "[email protected]",
"pnpm": {
"neverBuiltDependencies": [
"appium-chromedriver",
"appium-windows-driver",
"core-js",
"core-js-pure",
"fsevents"
],
"overrides": {
"@admob-plus-internal/cli": "link:./internal/cli",
"@types/node": "^18.7.3",
"@types/react": "17.0.39",
"node-sass": "7.0.1"
}
},
"volta": {
"node": "16.15.1"
},
"workspaces": [
"examples/*",
"internal/*",
"packages/*",
"website"
]
}