forked from ankur-sardar/new-branch-on-new-issue-github-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.24 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
42
43
44
45
46
{
"name": "new-brnach-on-new-issue",
"version": "1.0.0",
"description": "When creating a new issue, make a branch with the name of that issue.",
"author": "Ankur Sardar <[email protected]> (https://github.com/ankur-sardar)",
"license": "ISC",
"repository": "https://github.com/ankur-sardar/https://github.com/ankur-sardar/new-branch-on-new-issue-github-bot.git",
"homepage": "https://github.com/ankur-sardar/https://github.com/ankur-sardar/new-branch-on-new-issue-github-bot",
"bugs": "https://github.com/ankur-sardar/https://github.com/ankur-sardar/new-branch-on-new-issue-github-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^7.0.0"
},
"devDependencies": {
"jest": "^22.4.3",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}