-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.44 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
{
"name": "@harvard-lil/js-wacz",
"version": "0.1.4",
"description": "JavaScript module and CLI tool for working with web archive data using the WACZ format specification.",
"main": "index.js",
"type": "module",
"bin": {
"js-wacz": "./bin/cli.js"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"*.js",
"!*.test.js",
"!tmp.js",
"*/.keep"
],
"scripts": {
"js-wacz": "node cli.js",
"lint": "standard",
"lint-autofix": "standard --fix",
"test": "node --test",
"dev-signer": "echo 'TEST_SIGNING_URL=http://127.0.0.1:5000/sign' > .env ; cd .services/signer ; bash ./run.sh",
"publish-util": "cd .services/publish ; bash ./run.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/harvard-lil/js-wacz.git"
},
"author": "Harvard Library Innovation Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-lil/js-wacz/issues"
},
"homepage": "https://github.com/harvard-lil/js-wacz#readme",
"dependencies": {
"archiver": "^7.0.0",
"chalk": "^5.2.0",
"commander": "^12.0.0",
"glob": "^11.0.0",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"node-html-parser": "^6.1.4",
"pako": "^2.1.0",
"piscina": "^4.0.0",
"sorted-btree": "^1.8.1",
"uuid": "^10.0.0",
"warcio": "^2.2.0"
},
"devDependencies": {
"dotenv": "^16.0.3",
"node-stream-zip": "^1.15.0",
"standard": "^17.0.0"
}
}