-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.34 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
{
"name": "hookshare",
"description": "A tool for sharing WebHooks between multiple dev environments.",
"version": "0.1.4",
"author": {
"name": "Austin Kurpuis",
"email": "[email protected]",
"url": "https://www.austinkurpuis.com/"
},
"bin": {
"hs-relay": "bin/relay.js",
"hs-client": "bin/client.js"
},
"dependencies": {
"axios": "^1.3.6",
"http-errors": "^2.0.0",
"koa": "^2.14.2",
"koa-body": "^6.0.1",
"lodash": "^4.17.21",
"minimatch": "^9.0.0",
"signale": "^1.4.0",
"uuid": "^9.0.0",
"websocket": "^1.0.34"
},
"devDependencies": {
"@babel/preset-env": "^7.21.4",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nock": "^13.3.0",
"prettier": "^2.8.8",
"supertest": "^6.3.3"
},
"engines": {
"node": "^14 || ^16 || ^18"
},
"keywords": [
"development",
"proxy",
"relay",
"tool",
"webhook"
],
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/imaustink/hookshare"
},
"scripts": {
"format": "prettier . --check",
"lint": "eslint .",
"test": "jest"
},
"type": "module"
}