-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 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
{
"name": "dotfiles",
"version": "1.4.0",
"description": "Dotfile management system.",
"author": "Pavel Sanchez",
"repository": "https://github.com/PaleBluDot/dotfiles",
"license": "MIT",
"private": true,
"scripts": {
"commit": "git cz",
"release": "npx semantic-release",
"dry-release": "npx semantic-release -d"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"commitizen": "^4.3.0",
"commitlint": "^18.4.4",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-customizable": "^7.0.0",
"husky": "^8.0.3",
"semantic-release": "^21.0.9"
},
"husky": {
"hooks": {
"pre-commit-msg": "exec < /dev/tty && node_modules/.bin/cz --hook || true"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
}
}