-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "commitlint-learning",
"version": "1.0.1",
"description": "git commit规范提交",
"main": "index.js",
"scripts": {
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"commit": "git add . && git-cz"
},
"keywords": [
"cz",
"git",
"commit"
],
"author": "sunupDong",
"repository": {
"type": "git",
"url": "git+https://github.com/sunupdong/commitlint-learning.git"
},
"bugs": {
"url": "https://github.com/sunupdong/commitlint-learning/issues"
},
"homepage": "https://github.com/sunupdong/commitlint-learning#readme",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"commitizen": "^4.2.4",
"commitlint-config-cz": "^0.13.3",
"conventional-changelog": "^3.1.4",
"conventional-changelog-cli": "^2.0.17",
"cz-customizable": "^6.3.0",
"husky": "^7.0.1"
},
"config": {
"commitizen": {
"path": "cz-customizable"
}
}
}