This repository has been archived by the owner on Feb 15, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.45 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
55
56
57
58
59
60
61
62
63
64
{
"name": "starrycake",
"version": "1.0.1",
"private": true,
"description": "StarryCake is Multiple-Feature-Combined a GitHub Bot Application",
"author": "LimeCake <limecake23@gmail.com>",
"license": "ISC",
"repository": "https://github.com/LIMECAKE/StarryCake.git",
"homepage": "https://github.com/LIMECAKE/StarryCake",
"bugs": "https://github.com/LIMECAKE/StarryCake/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"dev": "nodemon",
"start": "probot run ./index.js",
"lint": "standard --fix",
"test": "jest && standard",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"commander": "^5.1.0",
"hbs": "^4.1.1",
"jsdom": "^16.5.0",
"moment": "^2.29.4",
"parse-diff": "^0.7.0",
"parse-reminder": "^1.2.0",
"probot": "^9.13.0",
"probot-commands": "^1.1.0",
"probot-config": "^1.1.0",
"probot-metadata": "^1.0.1",
"unfurl.js": "^1.1.6"
},
"devDependencies": {
"chalk": "^4.1.0",
"jest": "^24.9.0",
"joi": "^14.0.0",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"probot-scheduler": "^2.0.0-beta.1",
"smee-client": "^1.1.0",
"standard": "^14.3.1"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}