forked from fastify/fast-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.33 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
{
"name": "fast-proxy",
"version": "1.6.1",
"description": "Forward your HTTP request to another server.",
"main": "index.js",
"scripts": {
"test": "nyc mocha test/*.test.js",
"bench": "( node benchmark/service.js & node benchmark/fast-proxy-0http-gateway.js & (sleep 5 && wrk -t8 -c8 -d30s http://127.0.0.1:8080/service/hi) )"
},
"repository": {
"type": "git",
"url": "[email protected]:fastify/fast-proxy.git"
},
"keywords": [
"http",
"forward",
"proxy",
"gateway"
],
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"author": "Rolando Santamaria Maso",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fast-proxy/issues"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/fastify/fast-proxy",
"devDependencies": {
"0http": "^2.2.2",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"fastify": "^2.13.0",
"fastify-reply-from": "^2.0.1",
"h2url": "^0.2.0",
"http-proxy": "^1.18.0",
"mocha": "^7.1.1",
"nock": "^12.0.3",
"nyc": "^15.0.1",
"pem": "^1.14.4",
"restana": "^4.3.1",
"standard": "^14.3.3",
"supertest": "^4.0.2"
},
"dependencies": {
"end-of-stream": "^1.4.4",
"pump": "^3.0.0",
"semver": "^7.2.1",
"tiny-lru": "^7.0.2",
"undici": "^0.5.0"
}
}