-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.26 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
{
"name": "undici-proxy",
"version": "0.3.0",
"description": "Yet another express proxy middleware based on undici.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SyaOS/undici-proxy.git"
},
"keywords": [
"proxy",
"express",
"middleware",
"undici"
],
"author": "George Cheng <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SyaOS/undici-proxy/issues"
},
"homepage": "https://github.com/SyaOS/undici-proxy#readme",
"engines": {
"node": ">=18.12.0"
},
"dependencies": {
"lodash": "^4.17.21",
"undici": "^7.3.0"
},
"optionalDependencies": {
"@types/express": "4"
},
"peerDependencies": {
"express": "4"
},
"devDependencies": {
"@types/lodash": "^4.17.15",
"autocannon": "^8.0.0",
"body-parser": "^1.20.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-mocha": "^10.0.5",
"express": "4",
"express-http-proxy": "^2.0.0",
"http-proxy-middleware": "^3.0.0",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"should": "^13.2.3"
}
}