forked from harvard-lil/scoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.89 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@harvard-lil/scoop",
"version": "0.6.32",
"description": "🍨 High-fidelity, browser-based, single-page web archiving library and CLI.",
"main": "Scoop.js",
"type": "module",
"bin": {
"scoop": "./bin/cli.js"
},
"files": [
"*.js",
"*/*/*.js",
"!__*.js",
"!example.js",
"!*.test.js",
"*.sh",
".keep",
"*/.keep",
"assets/templates/*.njk"
],
"engines": {
"node": ">=18.0.0"
},
"standard": {
"globals": [
"Headers"
]
},
"scripts": {
"postinstall": "bash postinstall.sh",
"lint": "standard",
"lint-autofix": "standard --fix",
"test": "node --test",
"dev-signer": "echo 'TEST_WACZ_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/scoop.git"
},
"author": "Harvard Library Innovation Lab",
"license": "MIT",
"bugs": {
"url": "https://github.com/harvard-lil/scoop/issues"
},
"homepage": "https://github.com/harvard-lil/scoop#readme",
"dependencies": {
"@harvard-lil/js-wacz": "^0.1.3",
"@harvard-lil/portal": "^0.0.2",
"@laverdet/beaugunderson-ip-address": "^8.1.0",
"@playwright/browser-chromium": "^1.48.2",
"browsertrix-behaviors": "0.6.0",
"chalk": "^5.2.0",
"commander": "^12.0.0",
"get-os-info": "^1.0.2",
"loglevel": "^1.8.1",
"loglevel-plugin-prefix": "^0.8.4",
"node-stream-zip": "^1.15.0",
"nunjucks": "^3.2.3",
"playwright": "^1.48.2",
"uuid": "^9.0.0",
"warcio": "^2.1.0"
},
"devDependencies": {
"@godaddy/dmd": "^1.0.4",
"@types/node": "^20.4.5",
"adm-zip": "^0.5.10",
"detect-port": "^1.5.1",
"docdash": "^2.0.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"semver": "^7.5.1",
"standard": "^17.1.0"
}
}