-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
18 lines (18 loc) · 827 Bytes
/
Copy pathpackage.json
File metadata and controls
18 lines (18 loc) · 827 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"name": "vidium",
"version": "1.0.0",
"type": "module",
"scripts": {
"check": "tsc --noEmit",
"format": "biome format --write .",
"format:check": "biome format .",
"lint": "biome lint .",
"test": "node --test scripts/tests/*.test.mjs",
"test:browser": "node --test scripts/tests/frontend-browser.test.mjs",
"test:coverage:server": "node --experimental-test-coverage --test-coverage-include='src/**/*.ts' --test-coverage-lines=85 --test-coverage-branches=75 --test-coverage-functions=80 --test scripts/tests/config.test.mjs scripts/tests/play-migration.test.mjs scripts/tests/security-regression.test.mjs scripts/tests/http-*.test.mjs scripts/tests/worker-*.test.mjs",
"prepare:static": "node scripts/prepare-static.ts"
},
"devDependencies": {
"playwright-core": "1.62.1"
}
}