-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
94 lines (94 loc) · 2.33 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "proxy-chain",
"version": "2.5.4",
"description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.",
"main": "dist/index.js",
"keywords": [
"proxy",
"squid",
"apify",
"tunnel",
"puppeteer"
],
"author": {
"name": "Apify Technologies",
"email": "[email protected]",
"url": "https://apify.com"
},
"contributors": [
"Jan Curn <[email protected]>"
],
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/proxy-chain"
},
"bugs": {
"url": "https://github.com/apify/proxy-chain/issues"
},
"homepage": "https://blog.apify.com/how-to-make-headless-chrome-and-puppeteer-use-a-proxy-server-with-authentication-249a21a79212",
"files": [
"dist"
],
"scripts": {
"build:watch": "tsc -w",
"build": "tsc",
"clean": "rimraf dist",
"prepublishOnly": "npm run build",
"local-proxy": "node ./dist/run_locally.js",
"test": "nyc cross-env NODE_OPTIONS=--insecure-http-parser mocha --bail",
"lint": "eslint src",
"lint-fix": "eslint src --fix"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"@apify/eslint-config-ts": "^0.2.3",
"@apify/tsconfig": "^0.1.0",
"@types/jest": "^28.1.2",
"@types/node": "^18.8.3",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"basic-auth": "^2.0.1",
"basic-auth-parser": "^0.0.2",
"body-parser": "^1.19.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.10.0",
"express": "^4.17.1",
"faye-websocket": "^0.11.4",
"got-scraping": "^3.2.4-beta.0",
"isparta": "^4.1.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"portastic": "^1.0.1",
"proxy": "^1.0.2",
"puppeteer": "^19.6.3",
"request": "^2.88.2",
"rimraf": "^4.1.2",
"sinon": "^13.0.2",
"sinon-stub-promise": "^4.0.0",
"socksv5": "^0.0.6",
"through": "^2.3.8",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"underscore": "^1.13.1",
"ws": "^8.2.2"
},
"nyc": {
"reporter": [
"text",
"html",
"lcov"
],
"exclude": [
"**/test/**"
]
},
"dependencies": {
"socks": "^2.8.3",
"socks-proxy-agent": "^8.0.3",
"tslib": "^2.3.1"
}
}