-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 735 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
{
"//1": "describes your app and its dependencies",
"//2": "https://docs.npmjs.com/files/package.json",
"//3": "updating this file will download and update your packages",
"version": "1.0.0",
"description": "",
"author": "github-username <email-address>",
"repository": "https://github.com/probot/probot",
"license": "MIT",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"probot": "^7.2.0"
},
"devDependencies": {
"jest": "^23.2.0",
"smee-client": "^1.0.1",
"standard": "^11.0.1"
},
"engines": {
"node": "8.9",
"npm": "5.6"
},
"standard": {
"env": [
"jest"
]
}
}