-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.2 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "commitlint-config-conventional-system",
"version": "0.0.0-development",
"description": "Commitlint configuration for system and apps with defined scopes, commit types and more",
"author": {
"name": "Adrian Perez",
"email": "[email protected]",
"website": "https://adrianperez.codes"
},
"files": [
"index.js",
"examples/"
],
"repository": {
"url": "https://github.com/blackxored/commitlint-config-conventional-system"
},
"scripts": {
"precommit": "lint-staged",
"commit": "commit",
"commitmsg": "commitlint -e $GIT_PARAMS",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"lint": "eslint",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "jest",
"prettier:js": "prettier --write --trailing-comma es5 --tab-width 2 --single-quote --print-width 80 index.js"
},
"config": {
"commitzen": {
"path": "@commitlint/prompt"
}
},
"dependencies": {
"@commitlint/config-conventional": "^6.1.3",
"ramda": "^0.25.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"all-contributors-cli": "^4.6.0",
"babel-eslint": "^8.2.3",
"babel-jest": "23.0.1",
"commitizen": "^2.9.6",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.8.1",
"semantic-release": "^15.1.7"
},
"engines": {
"node": "> 4",
"npm": "> 3"
},
"jest": {
"testMatch": [
"<rootDir>/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write --trailing-comma all --tab-width 2 --single-quote --parser flow --print-width 80",
"git add",
"jest --bail --findRelatedTests"
]
},
"quokka": {
"babel": true
}
}