-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
31 lines (31 loc) · 995 Bytes
/
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
{
"name": "@babia/complex",
"version": "2.0.0",
"exports": {
".": "./src/mod.ts",
"./math": "./src/math/mod.ts"
},
"fmt": {
"indentWidth": 4
},
"imports": {
"@cross/test": "jsr:@cross/test@^0.0.10",
"@std/assert": "jsr:@std/assert@^1.0.10",
"@babia/complex": "./mod.ts"
},
"exclude": [
"docs",
".github",
"LICENSE"
],
"tasks": {
"check": "deno publish --dry-run --allow-dirty",
"lint": "deno fmt --check && deno lint",
"test:bun": "bun test --bail",
"test:deno": "deno test --trace-leaks --parallel --clean src",
"test:node": "echo '{ \"type\": \"module\" }' > package.json && npx --yes tsx --test",
"test": "deno task test:bun && deno task test:deno && deno task test:node",
"ok": "deno task lint && deno task test && deno task check ",
"doc:view": "deno doc --html --name=\"@babia/complex\" ./src/mod.ts"
}
}