forked from probot/stale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 908 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
{
"name": "probot-stale",
"version": "1.1.0",
"description": "A GitHub App built with Probot that closes abandoned Issues and Pull Requests after a period of inactivity.",
"author": "Brandon Keepers",
"license": "ISC",
"homepage": "https://probot.github.io/apps/stale/",
"keywords": [
"probot",
"github",
"probot-app"
],
"repository": "github:probot/stale",
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"@hapi/joi": "^15.0.0",
"newrelic": "^5.2.1",
"probot": "7.3.1",
"probot-config": "^0.1.0",
"probot-scheduler": "^1.0.2"
},
"engines": {
"node": "^8.9",
"npm": "^5.6"
},
"devDependencies": {
"jest": "^22.2.2",
"smee-client": "^1.0.1",
"standard": "^12.0.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node"
}
}