forked from nodejs/github-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 865 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 865 Bytes
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
{
"name": "nodejs-github-bot",
"version": "1.0.0-beta1",
"description": "Node.js GitHub Bot",
"scripts": {
"start": "node server.js | bunyan -o short",
"test": "tap test/**/*.test.js && standard",
"test:watch": "nodemon -q -x 'npm test'"
},
"engines": {
"node": ">= 6.0.0"
},
"private": true,
"license": "MIT",
"dependencies": {
"basic-auth": "^1.0.4",
"body-parser": "^1.15.0",
"bunyan": "^1.8.1",
"bunyan-middleware": "^0.3.1",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"github": "^2.5.2",
"glob": "^7.0.3",
"travis-ci": "^2.1.0"
},
"devDependencies": {
"eventsource": "^0.2.1",
"nock": "^8.0.0",
"nodemon": "^1.9.1",
"proxyquire": "^1.7.10",
"request": "^2.72.0",
"standard": "^6.0.7",
"supertest": "^1.2.0",
"tap": "^5.7.1"
}
}