-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
21 lines (21 loc) · 839 Bytes
/
deno.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/cli": "jsr:@std/cli@^1.0.6",
"@std/fmt": "jsr:@std/fmt@^1.0.2",
"@std/testing": "jsr:@std/testing@^1.0.3",
"src/": "./src/"
},
"tasks": {
"play": "deno run --allow-run play.ts",
"perft": "deno run --allow-read perft.ts",
"postinstall": "cp git-hooks/* .git/hooks",
"benchmark": "scripts/run_benchmarks.sh",
"stats": "cat tests/coverage-report.txt benchmarks/benchmark-results.txt",
"test": "deno test --allow-run --allow-read",
"test-unit": "deno task test -q tests/Unit",
"test-integration": "deno task test -q tests/Integration",
"test-coverage": "scripts/run_test_coverage.sh",
"test-coverage-html": "deno task test-coverage && deno coverage cov_profile --html && xdg-open cov_profile/html/index.html"
}
}