forked from zapier/zapier-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "root",
"private": true,
"devDependencies": {
"chalk": "^4.1.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"inquirer": "^8.0.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"mocha": "^8.4.0",
"prettier": "^2.3.0",
"semver": "^7.3.5",
"should": "^13"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "lerna run lint",
"lint:fix": "lerna run lint:fix",
"lint-examples": "eslint examples",
"validate": "lerna run validate",
"bump": "./scripts/bump.js",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "lerna run --stream precommit && lint-staged"
}
},
"lint-staged": {
"*.{js}": [
"eslint --fix --quiet"
],
"*.{js,json}": [
"prettier --write"
]
},
"prettier": {
"singleQuote": true
}
}