-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.09 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.09 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
{
"name": "commitlint-config-seek",
"version": "0.0.0-development",
"description": "Shareable commitlint config for SEEK",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/commitlint-config-seek.git"
},
"author": "Seek",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/commitlint-config-seek/issues"
},
"scripts": {
"test": "echo 'chore(Test): Test commit message' | commitlint -x './index.js'",
"commit": "git-cz",
"commitmsg": "commitlint -e -x './index.js'",
"semantic-release": "semantic-release"
},
"homepage": "https://github.com/seek-oss/commitlint-config-seek#readme",
"dependencies": {
"@commitlint/config-conventional": "^5.2.3"
},
"devDependencies": {
"@commitlint/cli": "^5.2.8",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.1.0",
"husky": "^0.14.3",
"semantic-release": "^11.0.2"
},
"peerDependencies": {
"@commitlint/cli": ">=5.2.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}