forked from behaviorbot/request-info
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.26 KB
/
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
{
"name": "request-info",
"version": "1.0.0",
"description": "> a GitHub App built with [probot](https://github.com/probot/probot) that requests more info from newly opened PRs/Issues that contain either a default title or whose description is left blank. It does so by taking data from a file in your repository. It should be located in a `.github/config.yml`",
"main": "index.js",
"scripts": {
"start": "probot run ./index.js",
"test": "mocha && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/behaviorbot/request-info.git"
},
"author": "hiimbex",
"license": "ISC",
"bugs": {
"url": "https://github.com/behaviorbot/request-info/issues"
},
"homepage": "https://github.com/behaviorbot/request-info#readme",
"devDependencies": {
"eslint-plugin-import": "^2.7.0",
"expect": "^1.20.2",
"smee-client": "^1.0.1",
"nodemon": "^1.17.2",
"mocha": "^3.4.2",
"standard": "^10.0.3"
},
"standard": {
"env": [
"mocha"
]
},
"engines": {
"node": ">= 14.17.0",
"npm": ">= 6.14.0"
},
"dependencies": {
"probot": "^7.2.0",
"probot-config": "^0.2.0"
}
}