-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
41 lines (41 loc) · 1.36 KB
/
deno.json
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
{
"lock": false,
"imports": {
"@std/assert": "jsr:@std/assert@^1",
"@std/encoding": "jsr:@std/encoding@^1",
"@std/json": "jsr:@std/json@^1",
"@std/path": "jsr:@std/path@^1",
"@std/toml": "jsr:@std/toml@^1",
"@stdext/assert": "jsr:@stdext/assert@^0",
"@stdext/crypto": "jsr:@stdext/crypto@^0",
"@stdext/encoding": "jsr:@stdext/encoding@^0",
"@stdext/http": "jsr:@stdext/http@^0",
"@stdext/json": "jsr:@stdext/json@^0",
"@stdext/lexer": "jsr:@stdext/lexer@^0",
"@stdext/types": "jsr:@stdext/types@^0"
},
"tasks": {
"check": "deno task format:check && deno lint && deno check **/*.ts",
"test": "RUST_BACKTRACE=1 deno test --unstable-http --unstable-webgpu --allow-all --parallel --coverage --trace-leaks",
"cov:gen": "deno coverage coverage --lcov --output=cov.lcov",
"build:wasm": "deno run --allow-read --allow-run _tools/build_wasm.ts",
"build:wasm:check": "deno task build:wasm --check",
"format:wasm": "cd _wasm && cargo fmt --all",
"format:wasm:check": "cd _wasm && cargo fmt --all -- --check",
"format": "deno fmt && deno task format:wasm",
"format:check": "deno fmt --check && deno task format:wasm:check"
},
"workspace": [
"./assert",
"./crypto",
"./encoding",
"./http",
"./json",
"./lexer",
"./types"
],
"exclude": [
"./_wasm/target",
"./coverage"
]
}