-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "pr-bumper",
"version": "5.1.4",
"description": "Bump the version of a package based on a GitHub Pull Request",
"scripts": {
"lint": "eslint *.js bin lib tests",
"test": "yarn run lint && yarn run utest",
"utest": "istanbul cover _mocha tests tests/ci tests/vcs tests/compliance --report lcov --report json-summary"
},
"bin": {
"pr-bumper": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "[email protected]:ciena-blueplanet/pr-bumper.git"
},
"engines": {
"node": ">= 6.0"
},
"keywords": [
"github",
"pull-request",
"version",
"semver",
"bump"
],
"author": "Adam Meadows [https://github.com/job13er]",
"contributors": [
"Matthew Dahl [https://github.com/sandersky]",
"Steven Glanzer [https://github.com/sglanzer]",
"Zak Henry [https://github.com/zakhenry]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ciena-blueplanet/pr-bumper/issues"
},
"homepage": "https://github.com/ciena-blueplanet/pr-bumper#readme",
"dependencies": {
"commander": "^2.9.0",
"lodash": "^4.0.1",
"nlf": "^1.4.1",
"node-fetch": "^1.3.3",
"prepend-file": "^1.3.0",
"promise": "^7.1.1",
"q": "^1.4.1",
"versiony": "^2.0.1"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^3.5.0",
"eslint-config-frost-standard": "^9.0.1",
"freezly": "^1.0.0",
"istanbul": "^0.4.2",
"mocha": "^2.3.4",
"rewire": "^2.5.1",
"sinon": "^2.3.4",
"sinon-chai": "^2.11.0"
},
"pr-bumper": {
"coverage": 92.68
}
}