-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
78 lines (78 loc) · 1.82 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "swift-package-registry",
"version": "1.0.0",
"private": true,
"description": "A registry of Swift packages",
"author": "twodayslate <[email protected]>",
"license": "ISC",
"repository": "https://github.com/twodayslate/swift-package-registry.git",
"homepage": "https://github.com/twodayslate/swift-package-registry",
"bugs": "https://github.com/twodayslate/swift-package-registry/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",
"postinstall": "patch-package"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@octokit/rest": "^19.0.7",
"absolutify": "^0.1.0",
"apicache": "^1.6.3",
"async": "^3.2.4",
"axios": "^1.3.4",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"dateformat": "^4.6.3",
"dockerode": "^3.3.4",
"ejs": "^3.1.8",
"express": "^4.18.2",
"express-partials": "^0.3.0",
"express-session": "^1.17.3",
"html-to-text": "^9.0.4",
"patch-package": "^6.5.1",
"pg": "^8.10.0",
"pg-hstore": "^2.3.4",
"probot": "^12.3.0",
"require-context": "^1.1.0",
"semver": "^7.3.8",
"sequelize": "^6.29.1",
"uuid": "^9.0.0"
},
"devDependencies": {
"https-localhost": "^4.7.0",
"jest": "^29.5.0",
"nock": "^12.0.0",
"nodemon": "^2.0.4",
"smee-client": "^1.2.2",
"standard": "^14.3.4"
},
"engines": {
"node": ">= 8.3.0"
},
"standard": {
"env": [
"jest"
],
"ignore": [
"/action/index.js"
]
},
"nodemonConfig": {
"exec": "npm start",
"watch": [
".env",
"."
]
},
"jest": {
"testEnvironment": "node"
}
}