package.json
744 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
{
"name": "git-commit-demo",
"version": "1.0.0",
"description": "demo of test git-commit",
"main": "index.js",
"dependencies": {
"commitizen": "^4.1.2",
"commitlint": "^8.3.5",
"husky": "^4.2.5"
},
"devDependencies": {
"cz-customizable": "^6.2.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "http://zhouzk@139.217.92.77:55676/zhouzk/git-commit-demo.git"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"git",
"commit"
],
"author": "zk",
"license": "ISC",
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
}
}
}