-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.32 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
{
"name": "cz-customizable-ghooks",
"version": "2.0.0",
"description": "Integrate [cz-customizable](https://github.com/leoforfree/cz-customizable) config with [ghooks](https://github.com/gtramontina/ghooks) or [husky](https://github.com/typicode/husky) to use a single configuration for commit message generation AND commit message validation.",
"keywords": [
"cz-customizable",
"ghooks",
"husky",
"commitizen",
"commit",
"validation",
"git"
],
"homepage": "https://github.com/uglow/cz-customizable-ghooks#readme",
"bugs": {
"url": "https://github.com/uglow/cz-customizable-ghooks/issues"
},
"license": "MIT",
"author": "Brett Uglow <u_glow@hotmail.com> (http://uglow.github.io/)",
"files": [
"src",
"*.md"
],
"main": "src/index.js",
"bin": "src/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/uglow/cz-customizable-ghooks.git"
},
"scripts": {
"coverage": "npm-run-all test:coverage test:check-coverage",
"lint": "npm-run-all 'verify -- --fix'",
"release": "npm-run-all build verify test:unit:once",
"semantic-release": "semantic-release",
"start": "npm run dev",
"test": "npm run test:unit",
"test:unit": "jest --silent --coverage",
"test:watch": "jest --watchAll",
"upload-coverage": "coveralls < reports/coverage/lcov.info",
"verify": "eslint --max-warnings=0 --ext .js src/"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "config/commitMessageConfig.js"
},
"ghooks": {
"commit-msg": "node ./src/cli.js $2",
"pre-commit": "npm-run-all verify test"
}
},
"dependencies": {
"bs-logger": "0.2.6",
"chalk": "4.1.0",
"p-pipe": "3.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"coveralls": "3.1.0",
"cross-env": "3.1.4",
"cz-customizable": "6.3.0",
"cz-customizable-ghooks": "*",
"eslint": "7.7.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.1.3",
"jest": "26.4.2",
"npm-run-all": "4.1.5",
"prettier": "2.0.4",
"semantic-release": "17.2.3"
},
"engines": {
"node": ">=10.x",
"npm": ">=6"
}
}