-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.04 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
47
{
"name": "CardCannon",
"version": "1.0.0",
"description": "A GitHub App for bootstrapping a GitHub repo with issues.",
"author": "Adam Zolyak <[email protected]> (www.waffle.io)",
"license": "ISC",
"repository": "https://github.com/waffleio/cardcannon.git",
"homepage": "https://github.com/waffleio/cardcannon",
"bugs": "https://github.com/waffleio/cardcannon/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./app.js",
"lint": "standard --fix",
"test": "jest --watchAll",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^7.4.0",
"probot-scheduler": "^1.2.0"
},
"devDependencies": {
"jest": ">23.0.0",
"nodemon": "^1.18.8",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
}
}