forked from lucacasonato/esbuild_deno_loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
27 lines (27 loc) · 893 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": "@luca/esbuild-deno-loader",
"version": "0.10.3",
"exports": {
".": "./mod.ts",
"./esbuild_types": "./src/esbuild_types.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@0.213",
"@std/encoding/base32": "jsr:@std/encoding@0.213/base32",
"@std/encoding": "jsr:@std/encoding@0.213",
"@std/fs": "jsr:@std/fs@0.213",
"@std/jsonc": "jsr:@std/jsonc@0.213",
"@std/path": "jsr:@std/path@0.213",
"x/importmap": "./vendor/x/importmap/mod.ts",
"x/importmap/_util.ts": "./vendor/x/importmap/_util.ts"
},
"lock": false,
"tasks": {
"test": "deno test -A --parallel --trace-ops",
"check:types": "deno check **/*.ts",
"ok": "deno fmt --check && deno lint && deno task check:types && deno task test"
},
"fmt": { "exclude": ["dist"] },
"lint": { "exclude": ["dist"] },
"publish": { "exclude": ["testdata/", "*_test.ts"] }
}