This repository was archived by the owner on Mar 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.55 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.55 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@anvilabs/commitlint-config",
"version": "0.0.0-development",
"description": "Anvilabs' shareable commitlint config",
"keywords": [
"commitlint",
"commitlint config",
"config",
"anvilabs",
"styleguide"
],
"repository": "anvilabs/commtlint-config",
"homepage": "https://github.com/anvilabs/commtlint-config#readme",
"bugs": {
"url": "https://github.com/anvilabs/commtlint-config/issues"
},
"license": "MIT",
"author": {
"name": "Ayan Yenbekbay",
"email": "ayan.yenb@gmail.com",
"url": "https://yenbekbay.me"
},
"files": [
"index.js"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"format": "prettier --write",
"lint": "eslint --cache",
"lint-all": "yarn run lint .",
"lint-fix": "yarn run lint --fix",
"lint-fix-all": "yarn run lint-fix .",
"test": "yarn run lint-all",
"precommit": "lint-staged",
"commitmsg": "commitlint -e",
"prepush": "yarn test",
"semantic-release": "semantic-release"
},
"lint-staged": {
"*.{js,json": [
"yarn run format",
"git add"
],
"*.js": [
"yarn run lint.fix",
"git add"
]
},
"peerDependencies": {
"@commitlint/cli": "^7.0.1"
},
"devDependencies": {
"@anvilabs/eslint-config": "^17.6.0",
"@commitlint/cli": "^7.0.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"prettier": "^1.13.5",
"semantic-release": "^15.5.5"
},
"dependencies": {
"@commitlint/config-conventional": "^7.0.1",
"lodash.merge": "^4.6.1"
}
}