forked from fastify/fastify-reply-from
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.2 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
{
"name": "fastify-reply-from",
"version": "0.6.0",
"description": "forward your HTTP request to another server, for fastify",
"main": "index.js",
"scripts": {
"coverage": "tap -j8 test/*.js --cov",
"test": "standard | snazzy && tap -J test/*.js test/http2/http2.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-reply-from.git"
},
"keywords": [
"fastify",
"http",
"forward",
"proxy"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-reply-from/issues"
},
"engines": {
"node": ">=8.0.0"
},
"homepage": "https://github.com/fastify/fastify-reply-from#readme",
"devDependencies": {
"fastify": "^2.0.0",
"got": "^9.6.0",
"h2url": "^0.1.2",
"msgpack5": "^4.2.1",
"nock": "^10.0.6",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"simple-get": "^3.0.3",
"snazzy": "^8.0.0",
"standard": "^12.0.1",
"tap": "^14.0.0"
},
"dependencies": {
"end-of-stream": "^1.4.1",
"fastify-plugin": "^1.5.0",
"pump": "^3.0.0",
"semver": "^6.0.0",
"tiny-lru": "^6.0.1",
"undici": "^0.4.0"
}
}