-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
27 lines (27 loc) · 887 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
{
"name": "@chiezo/bddoc",
"version": "0.0.0",
"exports": {
".": "./mod.ts"
},
"publish": {
"exclude": [
".github"
]
},
"tasks": {
"cache": "deno cache --frozen=false **/*.ts",
"check": "deno fmt -q && deno lint -q && deno check -q **/*.ts",
"doc": "deno run --allow-env --allow-ffi --allow-read --allow-run=deno --allow-sys --allow-write=README.md ./docs/build.ts",
"test": "deno test --allow-env --allow-ffi --allow-read --allow-sys --no-check",
"pre-commit": "deno task cache && deno task check && deno task test && deno task doc"
},
"imports": {
"@core/match": "jsr:@core/match@^0.3.1",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/collections": "jsr:@std/collections@^1.0.0",
"@std/testing": "jsr:@std/testing@^1.0.0",
"@swc/wasm-web": "npm:@swc/wasm-web@^1.7.4",
"dedent": "npm:dedent@^1.5.3"
}
}