-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 827 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 827 Bytes
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
{
"name": "homo",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"test": "yarn lint && jest --verbose",
"lint": "standard --fix",
"commit": "git-cz"
},
"repository": "https://github.com/shuidi-fed/homo.git",
"author": "HcySunYang <HcySunYang@outlook.com>",
"license": "MIT",
"devDependencies": {
"cz-lerna-changelog": "^2.0.2",
"husky": "^3.0.1",
"jest": "^24.8.0",
"lerna": "^3.14.1",
"lint-staged": "^9.2.0",
"standard": "^13.0.2"
},
"standard": {
"ignore": [
"examples/**"
]
},
"lint-staged": {
"*.js": [
"npm run lint",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-lerna-changelog"
}
}
}