forked from seantrane/github-label-presets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.62 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.62 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
{
"name": "@seantrane/github-label-presets",
"description": "GitHub Labels that are logical, colorful and sensible.",
"version": "1.1.0",
"author": "@seantrane",
"license": "ISC",
"homepage": "https://github.com/seantrane/github-label-presets",
"repository": "github:seantrane/github-label-presets",
"bugs": "https://github.com/seantrane/github-label-presets/issues",
"publishConfig": {
"access": "public"
},
"scripts": {
"lint:md": "markdownlint -i '**/node_modules/**' -c '.markdownlint.yaml' './'",
"lint": "npm run lint:md",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/travis-cli": "^7.5.2",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"commitlint-config-awesome": "^1.0.2",
"husky": "^1.3.1",
"markdownlint-cli": "^0.14.0",
"semantic-release": "^15.13.3"
},
"commitlint": {
"extends": [
"awesome"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"prepare": [
{
"path": "@semantic-release/changelog",
"changelogTitle": "# CHANGELOG"
},
"@semantic-release/npm",
"@semantic-release/git"
],
"publish": [
"@semantic-release/npm",
"@semantic-release/github"
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
}
}