-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
42 lines (42 loc) · 969 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
40
41
42
{
"name": "probot-reminders",
"version": "1.0.0",
"description": "reminders for GitHub Issues and Pull Requests",
"author": "Jamie Jones",
"license": "ISC",
"repository": "github:probot/reminders",
"scripts": {
"start": "probot run ./index.js",
"test": "jest && standard",
"test:debug": "node --inspect=9229 node_modules/.bin/jest --runInBand"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
},
"dependencies": {
"chrono-node": "^2.0.0",
"moment": "^2.18.1",
"parse-reminder": "^1.2.0",
"probot": "^10.9.0",
"probot-commands": "^1.0.1",
"probot-metadata": "^2.0.0",
"probot-scheduler": "2.0.0-beta.1"
},
"devDependencies": {
"eslint-plugin-import": "^2.8.0",
"jest": "^29.0.0",
"nock": "^13.0.4",
"smee-client": "^1.0.1",
"standard": "^11.0.1"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"standard": {
"env": [
"jest"
]
}
}