This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.56 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
61
62
63
{
"name": "fast-proxy",
"version": "2.2.0",
"description": "Forward your HTTP request to another server.",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "nyc mocha test/*.test.js",
"test:typescript": "tsd",
"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": "git+ssh://git@github.com/fastify/fast-proxy.git"
},
"keywords": [
"http",
"forward",
"proxy",
"gateway"
],
"files": [
"LICENSE",
"README.md",
"types/index.d.ts",
"index.js",
"lib/"
],
"author": "Rolando Santamaria Maso",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fast-proxy/issues"
},
"homepage": "https://github.com/fastify/fast-proxy",
"devDependencies": {
"@types/node": "^20.1.1",
"0http": "^3.1.1",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"follow-redirects": "^1.14.4",
"h2url": "^0.2.0",
"http-proxy": "^1.18.1",
"mocha": "^10.0.0",
"nock": "^13.1.3",
"nyc": "^15.1.0",
"restana": "^4.9.1",
"self-cert": "^2.0.0",
"standard": "^17.0.0",
"supertest": "^6.1.6",
"tsd": "^0.30.0"
},
"dependencies": {
"end-of-stream": "^1.4.4",
"fast-querystring": "^1.0.0",
"pump": "^3.0.0",
"semver": "^7.3.5",
"tiny-lru": "^11.0.0",
"undici": "^5.4.0"
}
}