-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.22 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
{
"name": "eslint-config-fullcube",
"description": "ESLint config for fullcube",
"version": "0.0.0-development",
"main": "base.js",
"author": "Tom Kirkpatrick @mrfelton",
"contributors": [
"Bram Borggreve @beeman"
],
"repository": {
"type": "git",
"url": "https://github.com/fullcube/eslint-config-fullcube"
},
"keywords": [
"fullcube",
"eslint"
],
"license": "MIT",
"homepage": "https://github.com/fullcube/eslint-config-fullcube",
"scripts": {
"semantic-release": "semantic-release",
"test": "echo \"No test specified\" && exit 0"
},
"dependencies": {
"eslint-config-strict": "^14.0.1"
},
"devDependencies": {
"condition-circle": "^2.0.2",
"conventional-commit-types": "^2.1.1",
"semantic-release": "^15.13.18"
},
"config": {
"commitTypeMap": {
"feat": "minor",
"fix": "patch",
"docs": "patch",
"style": "patch",
"refactor": "patch",
"perf": "patch",
"test": "patch",
"build": "patch",
"ci": "patch",
"chore": "patch",
"revert": "patch"
},
"validate-commit-msg": {
"types": "conventional-commit-types"
}
},
"release": {
"verifyConditions": "condition-circle"
}
}