-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 947 Bytes
/
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
{
"name": "koa-proxying",
"version": "1.0.5",
"description": "🎉 simple HTTP proxying tool for koa, easier to use",
"main": "./dist/proxy.js",
"typings": "./dist/proxy.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"proxy",
"http",
"koa",
"koa-proxy",
"http-proxy"
],
"repository": "Bin-Huang/koa-proxying",
"author": {
"name": "Ben Huang",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"http-proxy": "^1.18.1"
},
"peerDependencies": {
"koa": "2.5.3"
},
"devDependencies": {
"@types/http-proxy": "1.16.2",
"@types/koa": "^2.0.46"
},
"bugs": {
"url": "https://github.com/Bin-Huang/koa-proxying/issues"
},
"homepage": "https://github.com/Bin-Huang/koa-proxying#koa-proxying",
"engines": {
"node": ">=4.0.0"
},
"maintainers": [
"Ben Huang <[email protected]>"
]
}