-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 985 Bytes
/
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
{
"workspaces": [
"packages/*"
],
"name": "root",
"private": true,
"scripts": {
"publish": "lerna publish",
"install": "lerna bootstrap"
},
"repository": {
"type": "git",
"url": "https://github.com/51wangping/create-dylan-project.git"
},
"bugs": {
"url": "https://github.com/51wangping/create-dylan-project/issues"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"husky": "^4.2.5",
"lerna": "^4.0.0",
"prettier": "^2.2.1"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"scope-enum": [
2,
"always",
[
"scaffold",
"assets",
"theme",
"bin",
"preset",
"routes",
"transformer",
"parser"
]
]
}
}
}