-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 761 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 761 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
{
"name": "issue-assigner",
"version": "1.0.0",
"private": true,
"description": "A bot for managing issue assignments",
"author": "Varun Kolanu",
"license": "ISC",
"homepage": "https://github.com/Varun-Kolanu/issue-assigner",
"keywords": [
"probot",
"github",
"probot-app",
"issue",
"issue-assigner"
],
"scripts": {
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"test": "node --test"
},
"dependencies": {
"axios": "^1.7.2",
"body-parser": "^1.20.2",
"dotenv": "^16.4.5",
"probot": "^13.0.1"
},
"devDependencies": {
"nock": "^14.0.0-beta.5",
"nodemon": "^3.1.0",
"smee-client": "^2.0.0"
},
"engines": {
"node": ">= 18"
},
"type": "module"
}