-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 1.84 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
83
84
85
86
87
{
"name": "eslint-config-punchcard",
"description": "Punchcard CMS JavaScript Style Guides",
"main": "vanilla/configurations/vanilla.js",
"scripts": {
"test": "eslint index.js configurations rules",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"reparo": "reparo -b master"
},
"repository": {
"type": "git",
"url": "https://github.com/punchcard-cms/eslint-config-punchcard.git"
},
"keywords": [
"code",
"checker",
"code",
"linter",
"code",
"standards",
"code",
"style",
"eslint-config",
"eslint",
"eslintconfig",
"lint",
"style",
"checker",
"style",
"linter",
"punchcard-cms"
],
"contributors": [
"Sam Richard <[email protected]>",
"Scott Nath <[email protected]>"
],
"license": "Apache-2.0",
"dependencies": {
"babel-eslint": "^7.2.3",
"eslint-config-defaults": "^10.0.0-alpha.1"
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.11.12",
"eslint": "^3.4.0",
"ghooks": "^2.0.0",
"nyc": "^10.3.2",
"punchcard-commit-msg": "^1.0.0",
"punchcard-semantic-release": "^2.0.1",
"reparo": "^1.1.1-0",
"semantic-release": "^6.3.6",
"tap-diff": "^0.1.1"
},
"engines": {
"node": "^6"
},
"nyc": {
"exclude": [
"lib/api.js",
"lib/routes/api.js",
"lib/api/**/*",
"tests/**/*",
"config/**/*",
"public/**/*",
"bower_components/**/*",
"Gulpfile.js",
"coverage"
]
},
"ava": {
"files": [
"tests/*.js",
"!tests/apis.js"
],
"failFast": true,
"tap": true
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
}
}