|
1 | 1 | { |
2 | | - "name": "proxy-chain", |
3 | | - "version": "2.5.9", |
4 | | - "description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.", |
5 | | - "main": "dist/index.js", |
6 | | - "keywords": [ |
7 | | - "proxy", |
8 | | - "squid", |
9 | | - "apify", |
10 | | - "tunnel", |
11 | | - "puppeteer" |
12 | | - ], |
13 | | - "author": { |
14 | | - "name": "Apify Technologies", |
15 | | - "email": "support@apify.com", |
16 | | - "url": "https://apify.com" |
17 | | - }, |
18 | | - "contributors": [ |
19 | | - "Jan Curn <jan@apify.com>" |
20 | | - ], |
21 | | - "license": "Apache-2.0", |
22 | | - "repository": { |
23 | | - "type": "git", |
24 | | - "url": "git+https://github.com/apify/proxy-chain" |
25 | | - }, |
26 | | - "bugs": { |
27 | | - "url": "https://github.com/apify/proxy-chain/issues" |
28 | | - }, |
29 | | - "homepage": "https://blog.apify.com/how-to-make-headless-chrome-and-puppeteer-use-a-proxy-server-with-authentication-249a21a79212", |
30 | | - "files": [ |
31 | | - "dist" |
32 | | - ], |
33 | | - "scripts": { |
34 | | - "build:watch": "tsc -w", |
35 | | - "build": "tsc", |
36 | | - "clean": "rimraf dist", |
37 | | - "prepublishOnly": "npm run build", |
38 | | - "local-proxy": "node ./dist/run_locally.js", |
39 | | - "test": "nyc cross-env NODE_OPTIONS=--insecure-http-parser mocha --bail", |
40 | | - "lint": "eslint .", |
41 | | - "lint:fix": "eslint . --fix" |
42 | | - }, |
43 | | - "engines": { |
44 | | - "node": ">=14" |
45 | | - }, |
46 | | - "devDependencies": { |
47 | | - "@apify/eslint-config": "^1.0.0", |
48 | | - "@apify/tsconfig": "^0.1.0", |
49 | | - "@types/jest": "^28.1.2", |
50 | | - "@types/node": "^18.8.3", |
51 | | - "basic-auth": "^2.0.1", |
52 | | - "basic-auth-parser": "^0.0.2", |
53 | | - "body-parser": "^1.19.0", |
54 | | - "chai": "^4.3.4", |
55 | | - "cross-env": "^7.0.3", |
56 | | - "eslint": "^9.18.0", |
57 | | - "express": "^4.17.1", |
58 | | - "faye-websocket": "^0.11.4", |
59 | | - "got-scraping": "^3.2.4-beta.0", |
60 | | - "isparta": "^4.1.1", |
61 | | - "mocha": "^10.0.0", |
62 | | - "nyc": "^15.1.0", |
63 | | - "portastic": "^1.0.1", |
64 | | - "proxy": "^1.0.2", |
65 | | - "puppeteer": "^19.6.3", |
66 | | - "request": "^2.88.2", |
67 | | - "rimraf": "^4.1.2", |
68 | | - "sinon": "^13.0.2", |
69 | | - "sinon-stub-promise": "^4.0.0", |
70 | | - "socksv5": "^0.0.6", |
71 | | - "through": "^2.3.8", |
72 | | - "ts-node": "^10.2.1", |
73 | | - "typescript": "^4.4.3", |
74 | | - "typescript-eslint": "^8.20.0", |
75 | | - "underscore": "^1.13.1", |
76 | | - "ws": "^8.2.2" |
77 | | - }, |
78 | | - "nyc": { |
79 | | - "reporter": [ |
80 | | - "text", |
81 | | - "html", |
82 | | - "lcov" |
| 2 | + "name": "proxy-chain", |
| 3 | + "version": "2.5.9", |
| 4 | + "description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.", |
| 5 | + "main": "dist/index.js", |
| 6 | + "keywords": [ |
| 7 | + "proxy", |
| 8 | + "squid", |
| 9 | + "apify", |
| 10 | + "tunnel", |
| 11 | + "puppeteer" |
83 | 12 | ], |
84 | | - "exclude": [ |
85 | | - "**/test/**" |
86 | | - ] |
87 | | - }, |
88 | | - "dependencies": { |
89 | | - "socks": "^2.8.3", |
90 | | - "socks-proxy-agent": "^8.0.3", |
91 | | - "tslib": "^2.3.1" |
92 | | - } |
| 13 | + "author": { |
| 14 | + "name": "Apify Technologies", |
| 15 | + "email": "support@apify.com", |
| 16 | + "url": "https://apify.com" |
| 17 | + }, |
| 18 | + "contributors": [ |
| 19 | + "Jan Curn <jan@apify.com>" |
| 20 | + ], |
| 21 | + "license": "Apache-2.0", |
| 22 | + "repository": { |
| 23 | + "type": "git", |
| 24 | + "url": "git+https://github.com/apify/proxy-chain" |
| 25 | + }, |
| 26 | + "bugs": { |
| 27 | + "url": "https://github.com/apify/proxy-chain/issues" |
| 28 | + }, |
| 29 | + "homepage": "https://blog.apify.com/how-to-make-headless-chrome-and-puppeteer-use-a-proxy-server-with-authentication-249a21a79212", |
| 30 | + "files": [ |
| 31 | + "dist" |
| 32 | + ], |
| 33 | + "scripts": { |
| 34 | + "build:watch": "tsc -w", |
| 35 | + "build": "tsc", |
| 36 | + "clean": "rimraf dist", |
| 37 | + "prepublishOnly": "npm run build", |
| 38 | + "local-proxy": "node ./dist/run_locally.js", |
| 39 | + "test": "nyc cross-env NODE_OPTIONS=--insecure-http-parser mocha --bail", |
| 40 | + "test:docker": "docker build --tag proxy-chain-tests --file test/Dockerfile . && docker run proxy-chain-tests", |
| 41 | + "lint": "eslint .", |
| 42 | + "lint:fix": "eslint . --fix" |
| 43 | + }, |
| 44 | + "engines": { |
| 45 | + "node": ">=14" |
| 46 | + }, |
| 47 | + "devDependencies": { |
| 48 | + "@apify/eslint-config": "^1.0.0", |
| 49 | + "@apify/tsconfig": "^0.1.0", |
| 50 | + "@types/jest": "^28.1.2", |
| 51 | + "@types/node": "^18.8.3", |
| 52 | + "basic-auth": "^2.0.1", |
| 53 | + "basic-auth-parser": "^0.0.2", |
| 54 | + "body-parser": "^1.19.0", |
| 55 | + "chai": "^4.3.4", |
| 56 | + "cross-env": "^7.0.3", |
| 57 | + "eslint": "^9.18.0", |
| 58 | + "express": "^4.17.1", |
| 59 | + "faye-websocket": "^0.11.4", |
| 60 | + "got-scraping": "^3.2.4-beta.0", |
| 61 | + "isparta": "^4.1.1", |
| 62 | + "mocha": "^10.0.0", |
| 63 | + "nyc": "^15.1.0", |
| 64 | + "portastic": "^1.0.1", |
| 65 | + "proxy": "^1.0.2", |
| 66 | + "puppeteer": "^19.6.3", |
| 67 | + "request": "^2.88.2", |
| 68 | + "rimraf": "^4.1.2", |
| 69 | + "sinon": "^13.0.2", |
| 70 | + "sinon-stub-promise": "^4.0.0", |
| 71 | + "socksv5": "^0.0.6", |
| 72 | + "through": "^2.3.8", |
| 73 | + "ts-node": "^10.2.1", |
| 74 | + "typescript": "^4.4.3", |
| 75 | + "typescript-eslint": "^8.20.0", |
| 76 | + "underscore": "^1.13.1", |
| 77 | + "ws": "^8.2.2" |
| 78 | + }, |
| 79 | + "nyc": { |
| 80 | + "reporter": [ |
| 81 | + "text", |
| 82 | + "html", |
| 83 | + "lcov" |
| 84 | + ], |
| 85 | + "exclude": [ |
| 86 | + "**/test/**" |
| 87 | + ] |
| 88 | + }, |
| 89 | + "dependencies": { |
| 90 | + "socks": "^2.8.3", |
| 91 | + "socks-proxy-agent": "^8.0.3", |
| 92 | + "tslib": "^2.3.1" |
| 93 | + } |
93 | 94 | } |
0 commit comments