-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.06 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
{
"name": "i18n",
"scripts": {
"bootstrap": "lerna bootstrap --hoist",
"commit": "git-cz",
"test": "node scripts/test.js"
},
"license": "MIT",
"devDependencies": {
"commitizen": "^3.0.7",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"jest": "^24.7.1",
"lerna": "^3.13.3",
"lerna-changelog": "^0.8.2",
"minimist": "^1.2.0"
},
"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",
"doc": "Refine Doc",
"feat": "New Feature"
}
}
}