forked from zapier/zapier-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.05 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
{
"name": "root",
"private": true,
"devDependencies": {
"chalk": "^4",
"eslint": "^6",
"eslint-config-prettier": "^6",
"eslint-config-standard": "^14",
"eslint-plugin-import": "^2",
"eslint-plugin-mocha": "^6",
"eslint-plugin-node": "^9",
"eslint-plugin-promise": "^4",
"eslint-plugin-standard": "^4",
"husky": "^4",
"inquirer": "^7",
"lerna": "^3",
"lint-staged": "^10",
"mocha": "^7",
"prettier": "^2",
"semver": "^7",
"should": "^13"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "lerna run --ignore zapier-platform-example-app-* lint",
"lint-examples": "eslint examples",
"validate": "lerna run --ignore zapier-platform-example-app-* validate",
"bump": "./scripts/bump.js"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --stream precommit && lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix --quiet"
],
"*.{js,json}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true
}
}