-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 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
{
"name": "node-reverse-proxy",
"version": "1.0.0",
"description": "A reverse proxy for serving requests to servers located in a restricted network connectivity including firewalls, NATs and ACLs, among other restrictions. The tunnel is created by an intermediary called a proxy server which is usually located in a DMZ.",
"main": "index.js",
"scripts": {
"test1": "mocha __tests__/spec.js",
"test2": "mocha __tests__/with-restriction-spec.js",
"test": "npm run test1 && npm run test2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samuelpzbp/bg-proxy-agent.git"
},
"keywords": [
"http",
"request",
"http-proxy-agent",
"proxy",
"tunneling",
"node-reverse-proxy",
"reverse-proxy"
],
"author": "Samuel I. Olugbemi",
"license": "MIT",
"bugs": {
"url": "https://github.com/samuelpzbp/bg-proxy-agent/issues"
},
"homepage": "https://github.com/samuelpzbp/bg-proxy-agent#readme",
"dependencies": {
"http": "0.0.0",
"http-proxy-agent": "^2.1.0",
"request": "^2.88.0",
"url": "^0.11.0"
},
"devDependencies": {
"dotenv": "^8.2.0",
"expect.js": "^0.3.1",
"http-proxy": "^1.18.0",
"mocha": "^6.2.2"
}
}