forked from jan-molak/npm-failsafe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.1 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
{
"name": "npm-failsafe",
"version": "0.0.0-semantic",
"description": "Executes a sequence of npm scripts.",
"main": "src/index.js",
"bin": {
"failsafe": "bin/failsafe"
},
"scripts": {
"test": "exit 0;",
"commit": "git-cz",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/jan-molak/npm-failsafe.git"
},
"keywords": [
"cli",
"npm",
"script",
"scripts",
"ci"
],
"author": "Jan Molak <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jan-molak/npm-failsafe/issues"
},
"homepage": "https://github.com/jan-molak/npm-failsafe",
"dependencies": {
"npm": "^2.0.0",
"terminal-table-output": "^1.3.1"
},
"engines": {
"node": ">= 4.4.5",
"npm": ">= 2"
},
"devDependencies": {
"commitizen": "2.8.5",
"cz-conventional-changelog": "1.1.7",
"semantic-release": "^4.3.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}