-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 963 Bytes
/
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
{
"author": "gomesdigital",
"bugs": {
"url": "https://github.com/gomesdigital/clean-commit/issues"
},
"dependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^7.0.4"
},
"description": "A combination to enforce high quality commit messages.",
"devDependencies": {
"clean-commit": "^0.8.2",
"lodash": "^4.17.21"
},
"homepage": "https://github.com/gomesdigital/clean-commit#readme",
"keywords": [
"husky",
"commitizen",
"commitlint"
],
"license": "ISC",
"main": "scripts/install.js",
"name": "clean-commit",
"repository": {
"type": "git",
"url": "git+https://github.com/gomesdigital/clean-commit.git"
},
"scripts": {
"commit": "git cz",
"postinstall": "./scripts/install.js"
},
"version": "1.0.3",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}