-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.03 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "validate-commit-msg",
"description": "Script to validate a commit message follows the conventional changelog standard",
"main": "index.js",
"version": "0.0.0-development",
"scripts": {
"commit": "git-cz",
"check-coverage": "istanbul check-coverage --statements 100 --branches 90 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test:watch": "istanbul cover -x *.test.js _mocha -- -R spec -w index.test.js",
"test": "istanbul cover -x *.test.js _mocha -- -R spec index.test.js",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"bin": {
"validate-commit-msg": "index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/validate-commit-msg.git"
},
"keywords": [
"githook",
"commit",
"message",
"git",
"conventional",
"changelog"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentcdodds/validate-commit-msg/issues"
},
"homepage": "https://github.com/kentcdodds/validate-commit-msg#readme",
"devDependencies": {
"chai": "3.4.1",
"codecov.io": "0.1.6",
"commitizen": "2.5.0",
"cz-conventional-changelog": "1.1.5",
"ghooks": "1.0.3",
"istanbul": "0.4.2",
"mocha": "2.3.4",
"semantic-release": "4.3.5",
"sinon": "1.17.2"
},
"config": {
"ghooks": {
"commit-msg": "./index.js && npm t && npm run check-coverage"
},
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"helpMessage": "\nPlease fix your commit message (and consider using http://npm.im/commitizen)\n",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"custom"
],
"warnOnFail": false
}
},
"dependencies": {
"findup": "0.1.5",
"semver-regex": "1.0.0"
}
}