proxy-chain 2.7.0-beta.0 → 2.7.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proxy-chain",
3
- "version": "2.7.0-beta.0",
3
+ "version": "2.7.1-beta.0",
4
4
  "description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.",
5
5
  "main": "dist/index.js",
6
6
  "keywords": [
@@ -38,7 +38,7 @@
38
38
  "prepublishOnly": "npm run build",
39
39
  "local-proxy": "node ./dist/run_locally.js",
40
40
  "test": "nyc cross-env NODE_OPTIONS=--insecure-http-parser mocha",
41
- "test:docker": "docker build --tag proxy-chain-tests --file test/Dockerfile . && docker run proxy-chain-tests",
41
+ "test:docker": "docker build --tag proxy-chain-tests --file test/Dockerfile . && docker run --add-host localhost-test:127.0.0.1 proxy-chain-tests",
42
42
  "test:docker:all": "bash scripts/test-docker-all.sh",
43
43
  "lint": "eslint .",
44
44
  "lint:fix": "eslint . --fix"