forked from TiagoDanin/Hacktoberfest-Auto-Label
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 932 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": "hacktoberfest-auto-label-bot",
"version": "1.0.1",
"description": "Add label 'Hacktoberfest' in new issues.",
"author": "TiagoDanin <[email protected]>",
"license": "MIT",
"repository": "https://github.com/TiagoDanin/Hacktoberfest-Auto-Label.git",
"homepage": "http://TiagoDanin.github.io/Hacktoberfest-Auto-Label",
"bugs": "https://github.com/TiagoDanin/Hacktoberfest-Auto-Label/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"test": "jest",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "9.4.0"
},
"devDependencies": {
"jest": "23.6.0",
"nodemon": "^1.19.3",
"smee-client": "1.1.0"
},
"engines": {
"node": ">= 9"
},
"jest": {
"testEnvironment": "node"
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}