-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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
{
"name": "commitlint-config-octopus",
"version": "1.0.7",
"description": "commitlint config octopus",
"main": "src/index.js",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/XiaochanXia/commitlint-config-octopus.git"
},
"keywords": [
"commitlint"
],
"author": "Xiaochan Xia",
"license": "MIT",
"bugs": {
"url": "https://github.com/XiaochanXia/commitlint-config-octopus/issues"
},
"homepage": "https://github.com/XiaochanXia/commitlint-config-octopus#readme",
"dependencies": {
"@commitlint/config-conventional": "7.5.0"
},
"devDependencies": {
"@commitlint/cli": "7",
"eslint": "5",
"eslint-config-octopus": "1.0.2",
"husky": "1.3.1",
"lint-staged": "7"
},
"peerDependencies": {
"@commitlint/cli": "7"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": "eslint"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}