This repository has been archived by the owner on Feb 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "proxy-scraper",
"version": "2.1.5",
"description": "Scrap proxis from the web",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"print": "DEBUG='proxy-scraper*,-proxy-scraper:worker:*' babel-node example/print.js",
"build": "babel-node tools/build.js",
"prepublish": "npm run build",
"format": "prettier --no-semi --single-quote --use-tabs --write index.js src/*.js src/**/*.js example/*.js tools/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DeltaEvo/proxy-scraper.git"
},
"keywords": [
"proxy",
"scraper"
],
"author": "Duarte David <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/DeltaEvo/proxy-scraper/issues"
},
"homepage": "https://github.com/DeltaEvo/proxy-scraper#readme",
"dependencies": {
"cheerio": "^0.22.0",
"debug": "^2.6.8",
"form-data": "^2.1.4",
"node-fetch": "^2.0.0-alpha",
"proxy-agent": "^2.0.0",
"socks-proxy-agent": "DeltaEvo/node-socks-proxy-agent",
"temp-mail": "^2.0.0",
"tough-cookie": "^2.3.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-env": "^1.4.0",
"fs-extra": "^3.0.1",
"prettier": "^1.3.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-local-resolve": "^1.0.7"
}
}