proxy-chain 2.7.0-beta.0 → 2.7.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.
- package/package.json +93 -93
package/package.json
CHANGED
|
@@ -1,96 +1,96 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
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
|
-
"!**/*.tsbuildinfo"
|
|
33
|
-
],
|
|
34
|
-
"scripts": {
|
|
35
|
-
"build:watch": "tsc -w",
|
|
36
|
-
"build": "tsc",
|
|
37
|
-
"clean": "rimraf dist",
|
|
38
|
-
"prepublishOnly": "npm run build",
|
|
39
|
-
"local-proxy": "node ./dist/run_locally.js",
|
|
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",
|
|
42
|
-
"test:docker:all": "bash scripts/test-docker-all.sh",
|
|
43
|
-
"lint": "eslint .",
|
|
44
|
-
"lint:fix": "eslint . --fix"
|
|
45
|
-
},
|
|
46
|
-
"engines": {
|
|
47
|
-
"node": ">=14"
|
|
48
|
-
},
|
|
49
|
-
"devDependencies": {
|
|
50
|
-
"@apify/eslint-config": "^1.0.0",
|
|
51
|
-
"@apify/tsconfig": "^0.1.0",
|
|
52
|
-
"@types/jest": "^28.1.2",
|
|
53
|
-
"@types/node": "^18.8.3",
|
|
54
|
-
"basic-auth": "^2.0.1",
|
|
55
|
-
"basic-auth-parser": "^0.0.2",
|
|
56
|
-
"body-parser": "^1.19.0",
|
|
57
|
-
"chai": "^4.3.4",
|
|
58
|
-
"cross-env": "^7.0.3",
|
|
59
|
-
"eslint": "^9.18.0",
|
|
60
|
-
"express": "^4.17.1",
|
|
61
|
-
"faye-websocket": "^0.11.4",
|
|
62
|
-
"got-scraping": "^3.2.4-beta.0",
|
|
63
|
-
"isparta": "^4.1.1",
|
|
64
|
-
"mocha": "^10.0.0",
|
|
65
|
-
"nyc": "^15.1.0",
|
|
66
|
-
"portastic": "^1.0.1",
|
|
67
|
-
"proxy": "^1.0.2",
|
|
68
|
-
"puppeteer": "^19.6.3",
|
|
69
|
-
"request": "^2.88.2",
|
|
70
|
-
"rimraf": "^4.1.2",
|
|
71
|
-
"sinon": "^13.0.2",
|
|
72
|
-
"sinon-stub-promise": "^4.0.0",
|
|
73
|
-
"socksv5": "^0.0.6",
|
|
74
|
-
"through": "^2.3.8",
|
|
75
|
-
"ts-node": "^10.2.1",
|
|
76
|
-
"typescript": "^4.4.3",
|
|
77
|
-
"typescript-eslint": "^8.20.0",
|
|
78
|
-
"underscore": "^1.13.1",
|
|
79
|
-
"ws": "^8.2.2"
|
|
80
|
-
},
|
|
81
|
-
"nyc": {
|
|
82
|
-
"reporter": [
|
|
83
|
-
"text",
|
|
84
|
-
"html",
|
|
85
|
-
"lcov"
|
|
2
|
+
"name": "proxy-chain",
|
|
3
|
+
"version": "2.7.0",
|
|
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"
|
|
86
12
|
],
|
|
87
|
-
"
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
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
|
+
"!**/*.tsbuildinfo"
|
|
33
|
+
],
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build:watch": "tsc -w",
|
|
36
|
+
"build": "tsc",
|
|
37
|
+
"clean": "rimraf dist",
|
|
38
|
+
"prepublishOnly": "npm run build",
|
|
39
|
+
"local-proxy": "node ./dist/run_locally.js",
|
|
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",
|
|
42
|
+
"test:docker:all": "bash scripts/test-docker-all.sh",
|
|
43
|
+
"lint": "eslint .",
|
|
44
|
+
"lint:fix": "eslint . --fix"
|
|
45
|
+
},
|
|
46
|
+
"engines": {
|
|
47
|
+
"node": ">=14"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@apify/eslint-config": "^1.0.0",
|
|
51
|
+
"@apify/tsconfig": "^0.1.0",
|
|
52
|
+
"@types/jest": "^28.1.2",
|
|
53
|
+
"@types/node": "^18.8.3",
|
|
54
|
+
"basic-auth": "^2.0.1",
|
|
55
|
+
"basic-auth-parser": "^0.0.2",
|
|
56
|
+
"body-parser": "^1.19.0",
|
|
57
|
+
"chai": "^4.3.4",
|
|
58
|
+
"cross-env": "^7.0.3",
|
|
59
|
+
"eslint": "^9.18.0",
|
|
60
|
+
"express": "^4.17.1",
|
|
61
|
+
"faye-websocket": "^0.11.4",
|
|
62
|
+
"got-scraping": "^3.2.4-beta.0",
|
|
63
|
+
"isparta": "^4.1.1",
|
|
64
|
+
"mocha": "^10.0.0",
|
|
65
|
+
"nyc": "^15.1.0",
|
|
66
|
+
"portastic": "^1.0.1",
|
|
67
|
+
"proxy": "^1.0.2",
|
|
68
|
+
"puppeteer": "^19.6.3",
|
|
69
|
+
"request": "^2.88.2",
|
|
70
|
+
"rimraf": "^4.1.2",
|
|
71
|
+
"sinon": "^13.0.2",
|
|
72
|
+
"sinon-stub-promise": "^4.0.0",
|
|
73
|
+
"socksv5": "^0.0.6",
|
|
74
|
+
"through": "^2.3.8",
|
|
75
|
+
"ts-node": "^10.2.1",
|
|
76
|
+
"typescript": "^4.4.3",
|
|
77
|
+
"typescript-eslint": "^8.20.0",
|
|
78
|
+
"underscore": "^1.13.1",
|
|
79
|
+
"ws": "^8.2.2"
|
|
80
|
+
},
|
|
81
|
+
"nyc": {
|
|
82
|
+
"reporter": [
|
|
83
|
+
"text",
|
|
84
|
+
"html",
|
|
85
|
+
"lcov"
|
|
86
|
+
],
|
|
87
|
+
"exclude": [
|
|
88
|
+
"**/test/**"
|
|
89
|
+
]
|
|
90
|
+
},
|
|
91
|
+
"dependencies": {
|
|
92
|
+
"socks": "^2.8.3",
|
|
93
|
+
"socks-proxy-agent": "^8.0.3",
|
|
94
|
+
"tslib": "^2.3.1"
|
|
95
|
+
}
|
|
96
96
|
}
|