forked from harvard-lil/scoop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.25 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.25 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@sbusc/scoop-aws-lambda",
"version": "0.0.24",
"description": "A fork of @harvard-lil/scoop that is optimized for running on AWS lambda",
"main": "index.js",
"type": "module",
"types": "types/index.d.ts",
"bin": {
"scoop": "bin/cli.js"
},
"files": [
"*.js",
"*/*/*.js",
"!__*.js",
"!example.js",
"!*.test.js",
"*.sh",
".keep",
"*/.keep",
"assets/templates/*.njk",
"*.ts"
],
"engines": {
"node": ">=18.0.0"
},
"standard": {
"globals": [
"Headers"
]
},
"scripts": {
"postinstall": "bash postinstall.sh",
"lint:js": "standard",
"lint:ts": "eslint '**/*.ts'",
"lint": "npm run lint:js && npm run lint:ts",
"lint-autofix": "standard --fix && eslint '**/*.ts' --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.0",
"@harvard-lil/portal": "^0.0.2",
"@laverdet/beaugunderson-ip-address": "^8.1.0",
"@playwright/browser-chromium": "^1.43.0",
"@sparticuz/chromium": "^123.0.1",
"browsertrix-behaviors": "0.5.3",
"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-core": "^1.44.0",
"uuid": "^9.0.0",
"warcio": "^2.1.0"
},
"devDependencies": {
"@godaddy/dmd": "^1.0.4",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"adm-zip": "^0.5.10",
"detect-port": "^1.5.1",
"docdash": "^2.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"express": "^4.18.2",
"playwright": "^1.44.0",
"semver": "^7.5.1",
"standard": "^17.1.0",
"typescript": "^5.4.5"
}
}