-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 861 Bytes
/
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
{
"name": "github-prtools",
"version": "1.0.0",
"description": "A suite of tools for automating common GitHub flows",
"main": "app.js",
"scripts": {
"start": "node app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "github.com/mhamann/github-prtools"
},
"keywords": [
"github",
"pull",
"request",
"automation"
],
"author": "Matt Hamann <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"body-parser": "^1.17.2",
"bunyan": "^1.8.10",
"express": "^4.15.3",
"lodash": "^4.17.4",
"nconf": "^0.8.4",
"nodegit": "^0.18.3",
"request": "^2.81.0",
"request-promise": "^4.2.1",
"rimraf": "^2.6.1",
"strong-error-handler": "^2.1.0"
}
}