-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
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
{
"name": "comitizen-example",
"version": "2.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:amiltimore2016/comitizen_example.git"
},
"scripts": {
"commit": "npx git-cz",
"format": "prettier --write *.js",
"semantic-release": "semantic-release",
"prepare": "husky install",
"test": "echo 'no tests'"
},
"devDependencies": {
"@digitalroute/cz-conventional-changelog-for-jira": "^6.8.0",
"@semantic-release/gitlab": "^7.0.4",
"commitizen": "^4.3.0",
"eslint": "^8.2.0",
"husky": "^7.0.0",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0",
"semver": "^7.3.5"
},
"jira-prepare-commit-msg": {
"messagePattern": "[$J]\n$M",
"jiraTicketPattern": "([A-Z]+-\\d+)",
"commentChar": "#",
"isConventionalCommit": false,
"allowEmptyCommitMessage": false
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && npx git-cz --hook || true",
"pre-commit": "npm test"
}
},
"config": {
"commitizen": {
"path": "./node_modules/@digitalroute/cz-conventional-changelog-for-jira"
}
}
}