-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 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
{
"name": "website-scraper-existing-directory",
"version": "2.0.0",
"description": "Plugin for website-scraper which allows saving resources to the existing directory",
"readmeFilename": "README.md",
"type": "module",
"exports": {
".": "./index.js"
},
"scripts": {
"test": "c8 --all --reporter=text --reporter=lcov mocha --recursive",
"eslint": "eslint index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/website-scraper/website-scraper-existing-directory.git"
},
"keywords": [
"website-scraper"
],
"author": "Sofiia Antypenko <sofiia@antypenko.dev>",
"license": "MIT",
"bugs": {
"url": "https://github.com/website-scraper/website-scraper-existing-directory/issues"
},
"homepage": "https://github.com/website-scraper/website-scraper-existing-directory#readme",
"dependencies": {
"fs-extra": "^11.1.0"
},
"devDependencies": {
"c8": "^11.0.0",
"chai": "^6.0.1",
"eslint": "^8.5.0",
"mocha": "^11.0.1",
"website-scraper": "^6.0.0"
},
"peerDependencies": {
"website-scraper": "^6.0.0"
},
"files": [
"index.js"
],
"engines": {
"node": ">=20"
}
}