forked from wei/pull
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 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
{
"name": "pull",
"version": "1.0.0",
"description": "Keep your forks up-to-date.",
"author": "Wei He <[email protected]> (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": {
"bottleneck": "^2.19.5",
"bunyan-syslog-udp": "^0.2.0",
"joi": "^17.7.0",
"js-yaml": "^4.1.0",
"probot": "^9.14.1",
"probot-config": "^1.1.0",
"probot-scheduler": "wei/probot-scheduler#3b656f7",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"devDependencies": {
"jest": "^28.1.3",
"nodemon": "^2.0.20",
"smee-client": "^1.2.3",
"standard": "^16.0.4"
},
"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
}
}
}
}