-
-
Notifications
You must be signed in to change notification settings - Fork 148
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 932 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 932 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",
"type": "module",
"scripts": {
"start": "node server.js | bunyan -o short",
"test": "STATUS=0; node --test test/**/*.test.js || STATUS=$?; standard || STATUS=$?; exit $STATUS",
"test:watch": "nodemon -q -x 'npm test'"
},
"engines": {
"node": ">= 22.0.0"
},
"private": true,
"license": "MIT",
"dependencies": {
"@octokit/rest": "^22.0.1",
"aigle": "^1.14.1",
"basic-auth": "^3.0.0",
"body-parser": "^2.3.0",
"bunyan": "^1.8.1",
"codeowners-utils": "^1.0.2",
"debug": "^4.4.3",
"dotenv": "^18.0.0",
"events-async": "^1.2.1",
"express": "^5.2.1",
"glob": "13.0.6"
},
"devDependencies": {
"eventsource": "^5.1.1",
"fetch-mock": "^12.6.0",
"nock": "^14.0.17",
"nodemon": "^3.1.14",
"standard": "^17.1.2",
"supertest": "^7.2.2"
}
}