forked from apify/proxy-chain
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.24 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
{
"name": "proxy-chain-headers-extension",
"version": "1.0.7",
"description": "Node.js implementation of a proxy server (think Squid) with support for SSL, authentication, upstream proxy chaining, and protocol tunneling.",
"main": "build/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": [
"build"
],
"scripts": {
"build": "rm -rf ./build && babel src --out-dir build",
"local-proxy": "npm run build && node ./build/run_locally.js",
"test": "npm run build && cross-env NODE_OPTIONS=--insecure-http-parser mocha --exit --recursive",
"prepare": "npm run build",
"clean": "rm -rf build",
"lint": "npm run build && eslint src",
"lint-fix": "npm run build && eslint src --fix"
},
"engines": {
"node": ">=10"
},
"dependencies": {
"underscore": "^1.9.1"
},
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-core": "^6.1.21",
"babel-eslint": "^10.0.3",
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"basic-auth": "^2.0.0",
"body-parser": "^1.18.2",
"chai": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.0.1",
"express": "^4.16.2",
"faye-websocket": "^0.11.3",
"isparta": "^4.0.0",
"mocha": "^9.0.3",
"phantomjs-prebuilt": "^2.1.16",
"portastic": "^1.0.1",
"proxy": "^1.0.1",
"request": "^2.83.0",
"sinon": "^11.1.2",
"sinon-stub-promise": "^4.0.0",
"through": "^2.3.8",
"ws": "^8.0.0"
},
"optionalDependencies": {}
}