-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 876 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 876 Bytes
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
{
"//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",
"name": "jackettbot",
"version": "1.0.0",
"description": "",
"author": "github-username <email-address>",
"license": "ISC",
"repository": "your-repository-name",
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard"
},
"dependencies": {
"JSONPath": "^0.11.2",
"moment": "^2.30.1",
"mustache": "^4.2.0",
"probot": "^7.5.3",
"probot-scheduler": "^1.2.0",
"scramjet": "^4.37.0"
},
"devDependencies": {
"eslint": "^4.18.0",
"jest": "^22.4.3",
"smee-client": "^1.0.1",
"standard": "^11.0.1"
},
"engines": {
"node": "12.0.0",
"npm": "6.14.12"
},
"standard": {
"env": [
"jest"
]
}
}