UNPKG

website-scraper

Version:

Download website to a local directory (including all css, images, js, etc.)

66 lines (65 loc) 1.58 kB
{ "name": "website-scraper", "version": "6.0.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.1.2", "css-url-parser": "^1.0.0", "debug": "^4.3.1", "fs-extra": "^11.1.0", "got": "^14.4.7", "normalize-url": "^8.0.0", "p-queue": "^9.0.0", "sanitize-filename": "^1.6.3", "srcset": "^5.0.0" }, "devDependencies": { "c8": "^10.0.0", "eslint": "^8.5.0", "mocha": "^11.0.1", "nock": "^14.0.0", "should": "^13.2.3", "sinon": "^21.0.0" }, "files": [ "index.mjs", "lib" ], "engines": { "node": ">=20.18.1" } }