forked from probot/no-response
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1006 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
40
41
42
43
{
"name": "probot-no-response-milestones",
"version": "1.0.0",
"description": "a GitHub Integration that closes issues where the author hasn't responded to a request for more information",
"author": "Originally by Lee Dohm, additions by Mike Taylor",
"license": "ISC",
"repository": "https://github.com/miketaylr/no-response",
"scripts": {
"fix": "standard --fix",
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "mocha && standard"
},
"engines": {
"node": ">= 8.3.0"
},
"dependencies": {
"probot": "^7.0.0",
"probot-scheduler": "^1.2.0",
"scramjet": "^4.0.1"
},
"devDependencies": {
"eslint-config-probot": "^0.1.0",
"expect": "^1.20.2",
"localtunnel": "^1.8.3",
"mocha": "^4.0.1",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"standard": {
"env": [
"mocha"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}