-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
{
"name": "sake",
"description": "CI + CDN for Homebrew Taps.",
"version": "0.0.0",
"author": "Yasuaki Uechi <[email protected]> (https://uechi.io/)",
"scripts": {
"build": "tsc",
"clean": "shx rm -rf lib",
"dev": "NODE_ENV=development DEBUG=sake run-p dev:*",
"dev:node": "nodemon -w lib lib/index.js",
"dev:probot": "LOG_LEVEL=trace PORT=3001 nodemon -w lib/webhooks --exec probot run ./lib/webhooks/index.js",
"dev:tsc": "tsc -w --preserveWatchOutput",
"prepublishOnly": "yarn clean && yarn build",
"test": "jest"
},
"types": "lib/index.d.ts",
"main": "index.js",
"files": [
"lib"
],
"dependencies": {
"badgen": "^3.2.2",
"body-parser": "^1.19.0",
"debug": "^4.3.2",
"express": "^4.17.1",
"handlebars": "^4.7.7",
"helmet": "^4.6.0",
"js-yaml": "^4.1.0",
"node-fetch": "^2.6.1",
"node-git-server": "^0.6.1",
"nodegit": "^0.27.0",
"pkg": "^5.3.0",
"probot": "^12.1.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/debug": "^4.1.6",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/node": "^16.3.3",
"@types/node-fetch": "^2.5.11",
"@types/nodegit": "^0.27.3",
"@types/semver": "^7.3.7",
"@types/supertest": "^2.0.11",
"jest": "^27.0.6",
"nodemon": "^2.0.12",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"smee-client": "^1.2.2",
"supertest": "^6.1.3",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"type-fest": "^1.2.2",
"typescript": "^4.3.5"
},
"homepage": "https://github.com/uetchy/sake",
"repository": {
"type": "git",
"url": "https://github.com/uetchy/sake.git"
},
"bugs": {
"url": "https://github.com/uetchy/sake/issues"
},
"license": "Apache-2.0",
"keywords": [
"sake"
],
"engines": {
"node": ">= 12.18.3"
}
}