-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "fastify-vhost",
"version": "1.3.6",
"description": "Proxy subdomain http requests to another server",
"main": "./lib",
"scripts": {
"example": "node example.js",
"test": "tap test.js lib/*.test.js --coverage-report=lcov --no-browser --show-full-coverage"
},
"author": "Patrick Pissurno",
"license": "MIT",
"dependencies": {
"fastify": "^3.29.4",
"fastify-plugin": "^3.0.1",
"http-proxy": "^1.18.1"
},
"devDependencies": {
"fastify-multipart": "^5.4.0",
"pump": "^3.0.2",
"request": "^2.88.2",
"request-promise-native": "^1.0.9",
"tap": "^21.0.1"
},
"overrides": {
"cookie": "0.7.2",
"tough-cookie": "4.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patrickpissurno/fastify-vhost.git"
},
"keywords": [
"fastify",
"vhost",
"subdomain",
"proxy",
"plugin"
],
"bugs": {
"url": "https://github.com/patrickpissurno/fastify-vhost/issues"
},
"homepage": "https://github.com/patrickpissurno/fastify-vhost#readme"
}