forked from fastify/fastify-reply-from
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.64 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.64 KB
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
64
65
66
67
{
"name": "@fastify/reply-from",
"version": "8.3.1",
"description": "forward your HTTP request to another server, for fastify",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"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"
},
"homepage": "https://github.com/fastify/fastify-reply-from#readme",
"devDependencies": {
"@fastify/formbody": "^7.0.1",
"@fastify/multipart": "^7.1.0",
"@fastify/pre-commit": "^2.0.2",
"@sinonjs/fake-timers": "^10.0.0",
"@types/node": "^18.0.0",
"@types/tap": "^15.0.7",
"fastify": "^4.0.2",
"form-data": "^4.0.0",
"got": "^11.8.2",
"h2url": "^0.2.0",
"msgpack5": "^6.0.1",
"nock": "^13.2.6",
"proxyquire": "^2.1.3",
"simple-get": "^4.0.1",
"snazzy": "^9.0.0",
"split2": "^4.1.0",
"standard": "^17.0.0",
"tap": "^16.2.0",
"tsd": "^0.25.0"
},
"dependencies": {
"@fastify/error": "^3.0.0",
"end-of-stream": "^1.4.4",
"fast-querystring": "^1.0.0",
"fastify-plugin": "^4.0.0",
"pump": "^3.0.0",
"tiny-lru": "^10.0.0",
"undici": "^5.5.1"
},
"pre-commit": [
"lint",
"test"
],
"publishConfig": {
"access": "public"
}
}