-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 888 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
{
"name": "probot-scheduler-pro",
"version": "1.1.0",
"description": "A Probot extension to trigger events on a periodic schedule",
"main": "index.js",
"scripts": {
"test": "jest --coverage && standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ti-community-infra/probot-scheduler-pro.git"
},
"keywords": [
"probot"
],
"author": "Rustin-Liu",
"license": "ISC",
"bugs": {
"url": "https://github.com/ti-community-infra/probot-scheduler-pro/issues"
},
"homepage": "https://github.com/ti-community-infra/probot-scheduler-pro#readme",
"peerDependencies": {
"probot": ">=11.0.6"
},
"standard": {
"env": [
"jest"
]
},
"dependencies": {
"bottleneck": "^2.0.1"
},
"devDependencies": {
"jest": "^24.5.0",
"nock": "^13.0.7",
"probot": "^11.0.6",
"standard": "^12.0.1"
}
}