-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.85 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.85 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
{
"name": "moodleshield",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Herramienta LTI 1.3 que sirve vídeo HLS cifrado con marca de agua forense A/B por alumno",
"keywords": [
"moodle",
"lti",
"lti-1.3",
"watermark",
"forensic-watermarking",
"video-protection",
"hls",
"drm-alternative",
"e-learning",
"self-hosted"
],
"homepage": "https://github.com/jamataran/moodleshield#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jamataran/moodleshield.git"
},
"bugs": {
"url": "https://github.com/jamataran/moodleshield/issues"
},
"author": "José Antonio Matarán <jose@mataran.dev> (https://mataran.dev)",
"license": "AGPL-3.0-or-later",
"engines": {
"node": ">=22.11.0"
},
"scripts": {
"start": "node src/server.js",
"start:worker": "node src/worker.js",
"dev": "node --env-file=.env --watch src/server.js",
"dev:worker": "node --env-file=.env --watch src/worker.js",
"migrate": "node src/db/migrate.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node --test --test-reporter=spec \"test/**/*.test.js\"",
"test:integration": "node scripts/integration-tests.mjs",
"test:integration:local": "DB_PORT=55432 DB_PASSWORD=moodleshield-local node scripts/integration-tests.mjs",
"test:coverage": "node --test --experimental-test-coverage \"test/**/*.test.js\"",
"trace": "node tools/trace.mjs"
},
"dependencies": {
"@cantoo/pdf-lib": "^2.8.1",
"busboy": "^1.6.0",
"express": "^5.1.0",
"express-rate-limit": "^8.6.2",
"hls.js": "^1.6.15",
"jose": "^6.2.8",
"pdfjs-dist": "^5.7.284",
"pg": "^8.16.3",
"pino": "^9.13.1",
"pino-http": "^10.5.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0"
}
}