forked from krux/condition-jenkins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "@krux/condition-jenkins",
"description": "make sure things only the right builds on jenkins get published",
"version": "1.0.0",
"author": "Stephan Bönnemann <[email protected]> (http://boennemann.me)",
"bugs": {
"url": "https://github.com/krux/condition-jenkins/issues"
},
"dependencies": {
"@semantic-release/error": "^1.0.0",
"semver": "^5.0.3"
},
"devDependencies": {
"coveralls": "^2.11.2",
"nyc": "^5.0.0",
"proxyquire": "^1.7.1",
"semantic-release": "^6.0.3",
"standard": "^6.0.3",
"tap": "^5.0.0"
},
"files": [
"index.js"
],
"homepage": "https://github.com/krux/condition-jenkins#readme",
"keywords": [
"publish",
"release",
"semantic-release",
"jenkins-ci"
],
"license": "MIT",
"release": {
"debug": false,
"verifyConditions": []
},
"repository": {
"type": "git",
"url": "https://github.com/krux/condition-jenkins.git"
},
"scripts": {
"coverage": "nyc report",
"coverage:upload": "npm run -s coverage -- --reporter=text-lcov | coveralls",
"pretest": "standard",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "nyc tap --no-cov test.js"
}
}