forked from fastify/fastify-reply-from
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.36 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
{
"name": "fastify-reply-from",
"version": "2.1.0",
"description": "forward your HTTP request to another server, for fastify",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"typescript": "tsc -p tsconfig.json",
"coverage": "tap -j8 test/*.js --cov",
"test": "standard | snazzy && tap --no-esm -J test/*.js && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-reply-from.git"
},
"keywords": [
"fastify",
"http",
"forward",
"proxy"
],
"author": "Matteo Collina <hello@matteocollina.com>",
"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": {
"@types/node": "^12.12.35",
"fastify": "^2.13.0",
"got": "^10.7.0",
"h2url": "^0.2.0",
"msgpack5": "^4.2.1",
"nock": "^11.9.1",
"pre-commit": "^1.2.2",
"proxyquire": "^2.1.0",
"simple-get": "^3.0.3",
"snazzy": "^8.0.0",
"split2": "^3.1.1",
"standard": "^14.3.3",
"tap": "^14.10.7",
"typescript": "^3.8.3"
},
"dependencies": {
"end-of-stream": "^1.4.1",
"fastify-plugin": "^1.6.1",
"pump": "^3.0.0",
"semver": "^7.2.1",
"tiny-lru": "^7.0.0",
"undici": "^0.5.0"
}
}