-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.66 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
{
"name": "@xerren09/boop",
"version": "1.0.1",
"description": "A lightweight NodeJS CI/CD server for GitHub repositories ",
"preferGlobal": true,
"scripts": {
"build:ui": "npm run --prefix ./web build",
"build:app": "tsc --build",
"build": "tsc --build && npm run build:ui",
"start": "node ./bin/boop.js",
"dev": "ts-node ./src/boop.ts",
"prepublish": "npm run build"
},
"files": [
"bin/"
],
"type": "module",
"bin": {
"boop": "./bin/boop.js"
},
"engines": {
"node": ">= 16.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Xerren09/Boop.git"
},
"author": {
"name": "Bars Margetsch",
"url": "https://barsmargetsch.net/"
},
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Xerren09/Boop/issues"
},
"homepage": "https://github.com/Xerren09/Boop#readme",
"dependencies": {
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-ws": "^5.0.2",
"fs": "^0.0.1-security",
"http-proxy": "^1.18.1",
"morgan": "^1.10.0",
"path": "^0.12.7",
"shelljs": "^0.8.5",
"tree-kill": "^1.2.2",
"winston": "^3.11.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.14",
"@types/express-ws": "^3.0.4",
"@types/http-proxy": "^1.17.14",
"@types/morgan": "^1.9.9",
"@types/node": "^18.11.9",
"@types/shelljs": "^0.8.15",
"ts-node": "^10.9.2",
"typescript": "^4.9.3"
},
"keywords": [
"ci-cd",
"utility",
"github",
"webhook",
"server",
"build",
"host",
"tool",
"development"
]
}