-
Notifications
You must be signed in to change notification settings - Fork 5
/
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": "mega-scraper",
"version": "16.8.1",
"description": "",
"main": "index.js",
"bin": "bin.js",
"scripts": {
"clean": "rm -rf html/* ; rm -rf json/*; rm -rf screenshot/*",
"init": "mkdir -p html ; mkdir -p json; mkdir -p screenshot",
"start": "node --max-old-space-size=8192 ./bin.js",
"server": "node server.js",
"test": "DEBUG='mega-scraper:*' ava --fail-fast -c 1 -v",
"migrate": "mkdir -p migrations; DEBUG='mega-scraper:*' node migrate.js",
"bin": "node --max-old-space-size=8192 bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/christian-fei/mega-scraper.git"
},
"directories": {
"lib": "./lib"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/christian-fei/mega-scraper/issues"
},
"homepage": "https://github.com/christian-fei/mega-scraper#readme",
"devDependencies": {
"@types/bull": "^3.12.1",
"ava": "^3.5.0"
},
"dependencies": {
"bull": "^3.13.0",
"connect": "^3.7.0",
"debug": "^4.1.1",
"get-free-https-proxy": "^2.0.2",
"get-port": "^5.1.1",
"ioredis": "^4.16.3",
"puppeteer-extra": "^3.1.12",
"puppeteer-extra-plugin-adblocker": "^2.11.5",
"puppeteer-extra-plugin-stealth": "^2.4.13",
"puppeteer-page-proxy": "https://github.com/christian-fei/puppeteer-page-proxy",
"user-agents": "^1.0.554",
"yargs": "^15.1.0"
},
"optionalDependencies": {
"puppeteer": "^3.3.0"
}
}