forked from admob-plus/admob-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
118 lines (118 loc) · 3.5 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
{
"name": "admob-plus-monorepo",
"private": true,
"scripts": {
"test": "run-s test:*",
"test:cli": "cd packages/cli && run-s test",
"test:jest": "jest",
"lint": "tslint --project packages/cordova",
"test-android": "run-s test-android:*",
"test-android:testbed": "cordova-testbed --platform android --plugin packages/cordova --build-only",
"test-android:example": "cd examples/basic && run-s link-plugin && cordova build android",
"test-ios": "run-s test-ios:*",
"test-ios:testbed": "cordova-testbed --platform ios --plugin packages/cordova --build-only",
"test-ios:example": "cd examples/basic && run-s link-plugin && cordova build ios"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@commitlint/prompt-cli": "^8.3.5",
"@frat/link-dir": "^2.3.0",
"@types/jest": "^25.1.2",
"@types/yargs": "^15.0.3",
"cordova": "9.0.1-nightly.2019.11.10.44afc892",
"cordova-testbed": "^0.8.0",
"eslint": "^6.8.0",
"eslint-config-concise": "^0.37.1",
"eslint-config-concise-browser": "^0.37.0",
"eslint-config-concise-esnext": "^0.37.0",
"eslint-plugin-react": "^7.18.3",
"execa": "^4.0.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"lint-staged": "^10.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"prettier-eslint-cli": "^5.0.0",
"prettier-tslint": "^0.4.2",
"read-pkg": "^5.2.0",
"remark-cli": "^8.0.0",
"remark-lint-are-links-valid-duplicate": "^0.2.2",
"remark-lint-heading-whitespace": "^1.0.0",
"remark-lint-no-empty-sections": "^3.0.0",
"remark-lint-no-trailing-spaces": "^2.0.1",
"remark-preset-lint-consistent": "^3.0.0",
"remark-preset-lint-markdown-style-guide": "^3.0.0",
"remark-preset-lint-recommended": "^4.0.0",
"replace-in-file": "^6.0.0",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-concise": "^0.37.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.7.5",
"yargs": "^15.1.0"
},
"repository": "admob-plus/admob-plus",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": [
"concise"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint --fix"
],
"*.md": "remark --no-stdout",
"*.ts": "prettier-tslint fix",
"examples/*/package.json": "prettier --write",
"packages/cordova/src/ios/*.swift": "swiftlint lint --strict --path"
},
"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"
]
},
"workspaces": {
"nohoist": [
"**/@angular*",
"**/@angular*/**",
"**/@capacitor/**",
"**/@ionic/**",
"**/@ionic/app-scripts",
"**/@ionic/app-scripts/**",
"**/@ionic-native/**",
"**/@ionic-native/splash-screen",
"**/@ionic-native/status-bar",
"**/ionic-angular",
"**/ionic-angular/**",
"**/ionicons",
"**/ionicons/**",
"**/cordova-admob-plus",
"**/ionic",
"**/ionic-admob"
],
"packages": [
"packages/*",
"website"
]
}
}