forked from fastify/fastify-http-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "fastify-http-proxy",
"version": "4.0.4",
"description": "proxy http requests, for Fastify",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && tap test/*.js && npm run typescript",
"lint:typescript": "standard --fix --parser @typescript-eslint/parser --plugin typescript test/types/*.ts",
"typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-http-proxy.git"
},
"keywords": [
"fastify",
"http",
"proxy"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-http-proxy/issues"
},
"homepage": "https://github.com/fastify/fastify-http-proxy#readme",
"devDependencies": {
"@types/node": "^14.0.27",
"@typescript-eslint/parser": "^3.8.0",
"eslint-plugin-typescript": "^0.14.0",
"express": "^4.16.4",
"express-http-proxy": "^1.6.2",
"fastify": "^3.0.0",
"got": "^11.5.1",
"http-errors": "^1.8.0",
"http-proxy": "^1.17.0",
"make-promises-safe": "^5.0.0",
"pre-commit": "^1.2.2",
"simple-get": "^4.0.0",
"snazzy": "^8.0.0",
"standard": "^14.0.2",
"tap": "^14.10.8",
"tsd": "^0.13.1",
"typescript": "^3.9.7"
},
"dependencies": {
"fastify-reply-from": "^3.1.3",
"fastify-websocket": "^2.0.7",
"ws": "^7.3.1"
},
"tsd": {
"directory": "test"
}
}