-
-
Notifications
You must be signed in to change notification settings - Fork 277
/
package.json
65 lines (65 loc) · 1.54 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
{
"name": "website-scraper",
"version": "5.3.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"
},
"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": "Sofiia Antypenko <sofiia@antypenko.pp.ua>",
"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",
"css-url-parser": "^1.0.0",
"debug": "^4.3.1",
"fs-extra": "^11.1.0",
"got": "^13.0.0",
"normalize-url": "^8.0.0",
"p-queue": "^8.0.0",
"sanitize-filename": "^1.6.3",
"srcset": "^5.0.0"
},
"devDependencies": {
"c8": "^10.0.0",
"eslint": "^8.5.0",
"mocha": "^10.0.0",
"nock": "^13.0.11",
"should": "^13.2.3",
"sinon": "^19.0.2"
},
"files": [
"index.mjs",
"lib"
],
"engines": {
"node": ">=18.17"
}
}