-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.34 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.34 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
47
48
49
50
51
52
53
54
55
{
"name": "scraperama",
"version": "2.0.0",
"description": "Scrape csv, json, html and xml files",
"type": "module",
"main": "index.js",
"exports": "./index.js",
"directories": {
"test": "test"
},
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"d3-dsv": "^2.0.0",
"filesize": "^6.2.2",
"object-sizeof": "^1.6.1",
"tar": "^7.4.3",
"unzipper": "^0.12.3"
},
"peerDependencies": {
"playwright": "^1.0.0"
},
"peerDependenciesMeta": {
"playwright": {
"optional": true
}
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0"
},
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "for f in test/*-test.js; do echo \"--- $f ---\"; node \"$f\" || exit 1; done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarryStevens/scraperama.git"
},
"keywords": [
"webscraping"
],
"author": "Harry Stevens",
"license": "MIT",
"bugs": {
"url": "https://github.com/HarryStevens/scraperama/issues"
},
"homepage": "https://github.com/HarryStevens/scraperama#readme"
}