-
Notifications
You must be signed in to change notification settings - Fork 119
/
package.json
39 lines (39 loc) · 1009 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
39
{
"name": "nodejs-github-bot",
"version": "1.0.0-beta1",
"description": "Node.js GitHub Bot",
"type": "module",
"scripts": {
"start": "node server.js | bunyan -o short",
"test": "STATUS=0; tap --allow-incomplete-coverage test/**/*.test.js || STATUS=$?; standard || STATUS=$?; exit $STATUS",
"test:watch": "nodemon -q -x 'npm test'"
},
"engines": {
"node": ">= 20.11.0"
},
"private": true,
"license": "MIT",
"dependencies": {
"@octokit/rest": "^21.0.2",
"aigle": "^1.14.1",
"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.4.0",
"dotenv": "^16.4.7",
"events-async": "^1.2.1",
"express": "^4.21.2",
"glob": "11.0.0"
},
"devDependencies": {
"eventsource": "^3.0.2",
"fetch-mock": "^12.2.0",
"nock": "^13.5.6",
"nodemon": "^3.1.9",
"standard": "^17.1.2",
"supertest": "^7.0.0",
"tap": "^21.0.1"
}
}