forked from didi/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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,
"scripts": {
"build": "lerna run build",
"publish": "npm run build && lerna publish",
"coverage": "sh ./test/test.sh",
"clear": "rm -rf package-lock.json packages/*/package-lock.json",
"clear-all": "rimraf package-lock.json packages/*/node_modules packages/*/package-lock.json"
},
"author": "Chameleon-Team",
"license": "Apache 2.0",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-angular": "^8.2.0",
"babel-eslint": "^10.0.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.0.2",
"husky": "^3.1.0",
"istanbul": "^0.4.5",
"lerna": "^3.5.1",
"lint-staged": "^9.5.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"babel-core": "^6.26.3",
"babel-istanbul": "^0.12.2",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"coveralls": "^3.0.2",
"mocha": "*",
"nyc": "*",
"rimraf": "^2.6.3"
},
"lint-staged": {
"packages/**/*.js": "eslint --fix"
}
}