forked from ysdede/parakeet.js
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.01 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.01 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
{
"name": "parakeet-web-tests",
"version": "0.0.0",
"private": true,
"type": "module",
"description": "Dev/test harness for parakeet_web (three tiers: unit, http, e2e). Not published.",
"scripts": {
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
"test": "npm run test:unit && npm run test:http",
"test:unit": "node --test --test-reporter=spec 'test/unit/*.test.mjs'",
"test:http": "node --test --test-reporter=spec 'test/http/*.test.mjs'",
"test:e2e": "playwright test -c test/e2e/playwright.config.js",
"test:all": "npm run test && npm run test:e2e",
"e2e:models": "node scripts/fetch-e2e-models.mjs",
"fixture:bpe": "python scripts/gen-bpe-fixture.py > test/fixtures/bpe-fixture.json",
"fixture:moon": "node scripts/gen-jfk-moon-fixtures.mjs",
"webgpu:check": "node scripts/webgpu-check.mjs",
"webgpu:memcheck": "node scripts/webgpu-check.mjs --full"
},
"devDependencies": {
"@playwright/test": "^1.59.1",
"onnxruntime-node": "^1.26.0"
}
}