-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.12 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
{
"name": "cep",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"deploy": "sh deploy.sh",
"commit": "git-cz"
},
"license": "MIT",
"devDependencies": {
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"lerna": "^3.13.0",
"lerna-changelog": "^0.8.2",
"prettier": "^1.16.4",
"vue-windows": "^0.3.0",
"vuepress": "^1.0.0-alpha.39"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": "standard"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/@kuaizi/*.js": [
"eslint --fix",
"git add"
],
"*.{json,md}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"changelog": {
"labels": {
"feature": "New Feature",
"bug": "Bug Fix"
}
}
}