-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.64 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
{
"name": "example-commitizen-standard-version",
"version": "0.1.0",
"description": "Example repository for commitizen and standard-version",
"main": "src/index.js",
"private": true,
"scripts": {
"prettier": "prettier --write ./src/**/*.js",
"release": "HUSKY_SKIP_HOOKS=1 standard-version",
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git update-index --again"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"changelogHeader": "# Example Commitizen and Standard-Version\n\nAll notable changes to this project will be documented here. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n\n"
},
"repository": {
"type": "git",
"url": "https://github.com/natterstefan/example-commitizen-standard-version"
},
"author": "Stefan Natter (https://natterstefan.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/natterstefan/example-commitizen-standard-version/issues"
},
"homepage": "https://github.com/natterstefan/example-commitizen-standard-version#readme",
"devDependencies": {
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"prettier": "^1.18.2",
"standard-version": "^6.0.1"
}
}