-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 771 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 771 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
{
"scripts": {
"preinstall": "echo don't exec install command in this folder && exit 1",
"fmt": "npx prettier --write ./**/*.ts ./**/*.json ./**/*.md",
"git:setTemplate": "git config commit.template ./.gittemplate",
"changelog:all": "npx conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"changelog:append": "npx conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "git-cz"
},
"devDependencies": {
"iview-weapp": "*",
"pre-commit": "^1.2.2",
"weui-wxss": "*",
"commitizen": "*",
"cz-conventional-changelog": "*",
"conventional-changelog-cli": "*"
},
"pre-commit": {
"run": [
"fmt"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}