-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
25 lines (25 loc) · 796 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
{
"tasks": {
"test": "deno test --allow-read=. --doc --ignore=./js/mod.js,./dev/npm/",
"test:coverage": "deno test --allow-read=. --doc --ignore=./js/mod.js,./dev/npm/ --coverage=coverage",
"test:lint": "deno lint",
"test:fmt": "deno fmt --check",
"fmt": "deno fmt",
"check": "deno check ./mod.ts",
"bundle": "deno run --allow-run --allow-read --unstable ./dev/transpile.ts",
"test:bundle": "deno run --allow-run --allow-read --unstable ./dev/transpile_check.ts",
"build-npm": "deno run --allow-read --allow-write --allow-net --allow-env --allow-run ./dev/build_npm.ts"
},
"lint": {
"files": {
"exclude": ["./js/"]
}
},
"fmt": {
"files": {
"exclude": ["./js/"]
}
},
"importMap": "./import-map.json",
"lock": false
}