forked from website-scraper/node-website-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.51 KB
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
{
"name": "website-scraper",
"version": "1.2.0",
"description": "Download website to a local directory (including all css, images, js, etc.)",
"readmeFilename": "README.md",
"main": "index.js",
"scripts": {
"test": "istanbul cover node_modules/mocha/bin/_mocha --dir ./coverage --report lcov -- -R spec --recursive --timeout 7000 ./test/unit/ ./test/functional && npm run eslint",
"test-e2e": "node_modules/mocha/bin/_mocha --timeout 300000 ./test/e2e/*-test.js",
"eslint": "eslint lib/** index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/s0ph1e/node-website-scraper.git"
},
"keywords": [
"scrape",
"scraper",
"download",
"web",
"url",
"page",
"site",
"html",
"css",
"image",
"js"
],
"author": "s0ph1e",
"license": "MIT",
"bugs": {
"url": "https://github.com/s0ph1e/node-website-scraper/issues"
},
"homepage": "https://github.com/s0ph1e/node-website-scraper",
"dependencies": {
"bluebird": "^3.0.1",
"cheerio": "0.22.0",
"css-url-parser": "^1.0.0",
"debug": "^2.2.0",
"fs-extra": "^1.0.0",
"lodash": "^4.11.1",
"normalize-url": "^1.5.3",
"request": "^2.42.0",
"srcset": "^1.0.0"
},
"devDependencies": {
"codeclimate-test-reporter": "^0.4.0",
"coveralls": "^2.11.8",
"eslint": "^3.9.1",
"istanbul": "^0.4.0",
"mocha": "^3.0.2",
"nock": "^9.0.2",
"proxyquire": "^1.7.3",
"should": "^11.1.0",
"sinon": "^1.15.4",
"sinon-as-promised": "^4.0.0"
}
}