-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.63 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.63 KB
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
{
"name": "hook-relay",
"version": "0.1.19",
"description": "Relay for webhook events",
"main": "dist/server/index.js",
"bin": {
"hook-relay-server": "dist/server/index.js",
"hook-relay-client": "dist/client/index.js"
},
"scripts": {
"dev:server": "nodemon --exec ts-node src/server/index.ts -- --port 3000 --challenge-passphrase passphrase",
"dev:client": "nodemon --exec ts-node src/client/index.ts -- --server-endpoint ws://localhost:3000 --forward-endpoint http://localhost:9000 --challenge-passphrase passphrase",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"keywords": [
"webhook"
],
"repository": {
"type": "git",
"url": "git+https://github.com/itkq/hook-relay.git"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Takuya Kosugiyama",
"license": "MIT",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.5",
"@types/safe-regex": "^1.1.6",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.5.14",
"jest": "^30.0.4",
"jest-websocket-mock": "^2.5.0",
"nodemon": "^3.1.9",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"dependencies": {
"@types/express": "4.17.23",
"async-mutex": "^0.5.0",
"axios": "^1.7.9",
"commander": "^14.0.0",
"express": "4.21.2",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"safe-regex": "^2.1.1",
"ws": "^8.18.1"
}
}