-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.61 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "validate-commit-msg-regexp",
"description": "Set validation rules for commit messages.",
"main": "index.js",
"version": "0.0.0-development",
"scripts": {
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate",
"commit": "git-cz",
"commitmsg": "opt --in commitmsg --exec \"node ./lib/cli.js\"",
"precommit": "opt --in precommit --exec \"npm run validate\"",
"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/**/*.test.js node_modules/mocha/bin/_mocha -- -R spec -w test/**/*.test.js",
"test": "istanbul cover -x test/**/*.test.js node_modules/mocha/bin/_mocha -- -R spec test/**/*.test.js",
"validate": "npm t && npm run check-coverage",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"bin": {
"validate-commit-msg-regexp": "./lib/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/DylanYang0523/validate-commit-msg-regexp.git"
},
"keywords": [
"githook",
"commit",
"message",
"git",
"conventional",
"changelog",
"regex",
"regexp"
],
"author": "Dylan Yang <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DylanYang0523/validate-commit-msg-regexp/issues"
},
"homepage": "https://github.com/DylanYang0523/validate-commit-msg-regexp/blob/master/README.md",
"devDependencies": {
"all-contributors-cli": "3.0.7",
"chai": "3.4.1",
"codecov.io": "0.1.6",
"commitizen": "2.5.0",
"cz-conventional-changelog": "1.1.5",
"husky": "0.12.0",
"istanbul": "0.4.2",
"mkdirp": "^0.5.1",
"mocha": "2.3.4",
"opt-cli": "1.5.1",
"rimraf": "^2.6.1",
"semantic-release": "^15.9.9",
"sinon": "1.17.2",
"travis-deploy-once": "^5.0.3"
},
"config": {
"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,
"autoFix": true
}
},
"dependencies": {
"conventional-commit-types": "^2.0.0",
"find-parent-dir": "^0.3.0",
"findup": "0.1.5",
"semver-regex": "1.0.0"
},
"files": [
"index.js",
"lib"
]
}