forked from website-scraper/node-website-scraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "website-scraper",
"version": "5.1.0",
"description": "Download website to a local directory (including all css, images, js, etc.)",
"readmeFilename": "README.md",
"type": "module",
"exports": {
".": "./index.mjs",
"./defaultOptions": "./lib/config/defaults.js",
"./plugins": "./lib/plugins/index.js"
},
"scripts": {
"test": "c8 --all --reporter=text --reporter=lcov mocha --recursive --timeout 7000 ./test/unit/ ./test/functional",
"test-e2e": "mocha --timeout 300000 ./test/e2e/*-test.js",
"eslint": "eslint lib/** index.mjs"
},
"repository": {
"type": "git",
"url": "git://github.com/website-scraper/node-website-scraper.git"
},
"keywords": [
"scrape",
"scraper",
"download",
"web",
"url",
"page",
"site",
"html",
"css",
"image",
"js"
],
"author": "Sophia Antipenko <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/website-scraper/node-website-scraper/issues"
},
"homepage": "https://github.com/website-scraper/node-website-scraper",
"dependencies": {
"cheerio": "1.0.0-rc.11",
"css-url-parser": "^1.0.0",
"debug": "^4.3.1",
"fs-extra": "^10.0.0",
"got": "^12.0.0",
"lodash": "^4.17.21",
"normalize-url": "^7.0.2",
"p-queue": "^7.1.0",
"sanitize-filename": "^1.6.3",
"srcset": "^5.0.0"
},
"devDependencies": {
"c8": "^7.7.2",
"eslint": "^8.5.0",
"mocha": "^10.0.0",
"nock": "^13.0.11",
"should": "^13.2.3",
"sinon": "^14.0.0"
},
"files": [
"index.mjs",
"lib"
],
"engines": {
"node": ">=14.14"
}
}