forked from admob-plus/admob-plus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.44 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
{
"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 && cordova platform add android && 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 && cordova platform add ios && cordova build ios",
"pre-commit": "run-s pre-commit:*",
"pre-commit:lint-staged": "lint-staged",
"pre-commit:swiftlint": "cd packages/cordova/src/ios && swiftlint"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@commitlint/config-lerna-scopes": "^7.2.1",
"@commitlint/prompt-cli": "^7.2.1",
"@types/jest": "^23.3.9",
"cordova": "^8.1.2",
"cordova-testbed": "^0.2.0",
"eslint": "^5.9.0",
"eslint-config-concise": "^0.32.0",
"eslint-config-concise-browser": "^0.32.0",
"eslint-config-concise-esnext": "^0.32.0",
"husky": "^1.1.3",
"jest": "^23.6.0",
"lerna": "3.4.3",
"lint-staged": "^8.0.4",
"npm-run-all": "^4.1.3",
"prettier": "^1.15.1",
"prettier-eslint-cli": "^5.0.0-beta.0",
"prettier-tslint": "^0.4.0",
"remark-cli": "^6.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.0",
"remark-preset-lint-consistent": "^2.0.2",
"remark-preset-lint-markdown-style-guide": "^2.1.2",
"remark-preset-lint-recommended": "^3.0.2",
"ts-jest": "<23.10.0",
"tslint": "^5.11.0",
"tslint-config-concise": "^0.32.0",
"typescript": "^3.1.6"
},
"repository": "admob-plus/admob-plus",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": [
"concise"
]
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testPathIgnorePatterns": ["/node_modules/", "<rootDir>/packages/cli/"],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"testURL": "http://localhost/",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier-eslint --write",
"eslint --fix",
"git add"
],
"*.md": [
"remark --no-stdout"
],
"*.ts": [
"prettier-tslint fix",
"git add"
],
"examples/*/package.json": [
"prettier --write",
"git add"
],
"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": {
"packages": [
"packages/*",
"examples/basic",
"website"
]
}
}