-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.54 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.54 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
63
64
65
66
67
68
69
70
{
"name": "egg-http-proxy-plus",
"description": "A powerful HTTP proxy middleware plugin for Egg.js with TypeScript support",
"version": "2.1.0",
"main": "app.js",
"types": "index.d.ts",
"files": [
"app",
"config",
"app.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run lint && egg-bin test",
"test:local": "egg-bin test",
"cov": "egg-bin cov",
"ci": "npm run lint && npm run cov"
},
"dependencies": {
"egg-path-matching": "^1.2.0",
"http-proxy-middleware": "^3.0.5",
"js-cool": "^2.1.2",
"koa-connect": "^2.1.1"
},
"devDependencies": {
"@eslint-sets/eslint-config": "^6.3.1",
"egg": "^3.34.0",
"egg-bin": "^6.13.0",
"egg-ci": "^2.2.0",
"egg-mock": "^5.15.2",
"eslint": "^9.39.4",
"express": "^4.22.1"
},
"peerDependencies": {
"egg": ">=3.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"eggPlugin": {
"name": "httpProxyPlus"
},
"ci": {
"version": "18, 20, 22"
},
"sideEffects": false,
"keywords": [
"egg",
"egg-plugin",
"eggPlugin",
"proxy",
"http-proxy",
"http-proxy-middleware",
"middleware",
"websocket",
"typescript"
],
"license": "MIT",
"author": "saqqdy <saqqdy@qq.com>",
"homepage": "https://github.com/saqqdy/egg-http-proxy-plus#readme",
"bugs": {
"url": "https://github.com/saqqdy/egg-http-proxy-plus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/egg-http-proxy-plus.git"
}
}