-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
package.json
55 lines (55 loc) · 1.32 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
{
"name": "website-scraper-puppeteer",
"version": "1.1.0",
"description": "Plugin for website-scraper which returns html for dynamic websites using puppeteer",
"readmeFilename": "README.md",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"keywords": [
"website-scraper",
"puppeteer",
"chromium",
"chrome",
"headless",
"html"
],
"dependencies": {
"debug": "^4.1.1",
"puppeteer": "^23.0.*"
},
"peerDependencies": {
"website-scraper": "^5.0.0"
},
"devDependencies": {
"c8": "^10.1.2",
"chai": "^5.1.1",
"eslint": "^8.5.0",
"finalhandler": "^1.1.2",
"fs-extra": "^11.1.0",
"mocha": "^10.0.0",
"serve-static": "^1.13.2",
"website-scraper": "^5.0.0"
},
"scripts": {
"test": "c8 --all --reporter=text --reporter=lcov mocha --recursive --timeout 15000",
"eslint": "eslint lib/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/website-scraper/website-scraper-puppeteer.git"
},
"author": "Sofiia Antypenko <sofiia@antypenko.pp.ua>",
"license": "MIT",
"bugs": {
"url": "https://github.com/website-scraper/website-scraper-puppeteer/issues"
},
"homepage": "https://github.com/website-scraper/website-scraper-puppeteer#readme",
"files": [
"lib"
],
"engines": {
"node": ">=18"
}
}