-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.48 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
{
"name": "archive-loc-collection",
"version": "1.1.0",
"description": "A tool to download and archive collections from the Library of Congress (LoC). Inspired by https://www.tiktok.com/@annelisethearchaeologist/video/7436133360868822318",
"main": "index.js",
"bin": {
"archive-loc-collection": "./bin/archive-loc-collection"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"bin"
],
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"eslint": "eslint src/*.js bin/*",
"prettier": "prettier --write **/*.js",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/straker/loc-collection-archival-tool.git"
},
"author": "Steven Lambert",
"license": "MIT",
"bugs": {
"url": "https://github.com/straker/loc-collection-archival-tool/issues"
},
"homepage": "https://github.com/straker/loc-collection-archival-tool#readme",
"dependencies": {
"chalk": "^5.3.0",
"cli-progress": "^3.12.0",
"commander": "^12.1.0",
"html-prettify": "^1.0.7",
"playwright": "^1.48.2",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint --fix"
]
}
}