forked from daddyfatstacksBIG/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
48
49
50
51
52
53
54
{
"name": "pull",
"version": "1.0.0",
"description": "",
"author": "Wei He <github@weispot.com> (https://whe.me)",
"license": "MIT",
"repository": "https://github.com/wei/pull.git",
"scripts": {
"dev": "nodemon --exec \"npm start\"",
"start": "probot run ./index.js",
"lint:fix": "standard --fix",
"test": "standard && jest",
"test:watch": "jest --watchAll --notify --notifyMode=change --coverage"
},
"dependencies": {
"badgen": "^2.8.2",
"bottleneck": "^2.19.2",
"bunyan-syslog-udp": "^0.2.0",
"joi": "^14.3.1",
"js-yaml": "^3.13.1",
"probot": "^9.2.16",
"probot-config": "^1.1.0",
"probot-scheduler": "wei/probot-scheduler#3b656f7",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"devDependencies": {
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"smee-client": "^1.1.0",
"standard": "^12.0.1"
},
"engines": {
"node": ">= 10.2.1",
"npm": ">= 6.7.0"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 95,
"lines": 95,
"statements": 95
}
}
}
}