-
-
Notifications
You must be signed in to change notification settings - Fork 135
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 KB
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
{
"name": "nodejs-github-bot",
"version": "1.0.0-beta1",
"description": "Node.js GitHub Bot",
"scripts": {
"start": "node server.js | bunyan -o short",
"test": "STATUS=0; tap --no-check-coverage test/**/*.test.js || STATUS=$?; standard || STATUS=$?; exit $STATUS",
"test:watch": "nodemon -q -x 'npm test'"
},
"engines": {
"node": ">= 12.0.0"
},
"private": true,
"license": "MIT",
"dependencies": {
"@octokit/rest": "^17.11.2",
"aigle": "^1.14.1",
"async": "3.2.4",
"basic-auth": "^2.0.1",
"body-parser": "^1.20.2",
"bunyan": "^1.8.1",
"bunyan-middleware": "1.0.2",
"codeowners-utils": "^1.0.2",
"debug": "^4.3.4",
"dotenv": "^16.0.3",
"events-async": "^1.2.1",
"express": "^4.18.2",
"glob": "^9.2.1",
"request": "^2.88.2"
},
"devDependencies": {
"eventsource": "^2.0.2",
"nock": "^13.3.0",
"nodemon": "^2.0.21",
"proxyquire": "^2.1.3",
"sinon": "^15.0.1",
"standard": "^17.0.0",
"supertest": "^6.3.3",
"tap": "^16.3.4"
}
}