-
Notifications
You must be signed in to change notification settings - Fork 207
/
package.json
40 lines (40 loc) · 937 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
{
"name": "probot-hello",
"version": "1.0.0",
"description": "A Probot app",
"author": "Edward Raigosa <[email protected]>",
"license": "ISC",
"repository": "https://github.com/wenlock/probot-hello.git",
"homepage": "https://github.com/wenlock/probot-hello",
"bugs": "https://github.com/wenlock/probot-hello/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"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": {
"jsdom": "11.11.0",
"jest": "^23.4.2",
"nodemon": "^1.17.2",
"smee-client": "^1.0.2",
"standard": "^10.0.3"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
}
}