-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
31 lines (31 loc) · 1 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
{
"name": "@jollytoad/import-content",
"version": "1.1.0",
"exports": {
".": "./mod.ts",
"./import-text": "./import_text.ts",
"./import-binary": "./import_binary.ts",
"./import-blob": "./import_blob.ts"
},
"tasks": {
"test": "deno test --allow-read --allow-write --allow-net --allow-env",
"check": "deno check **/*.ts",
"lint": "deno lint && deno doc --lint **/*.ts",
"ok": "deno fmt && deno task lint && deno task check && deno task test && deno publish --dry-run --allow-dirty",
"outdated": "deno run --allow-read=. --allow-net=jsr.io,registry.npmjs.org jsr:@check/deps",
"lock": "rm -f deno.lock && deno task check"
},
"imports": {
"$test/": "http://localhost:8910/",
"@deno/cache-dir": "jsr:@deno/cache-dir@^0.10.1",
"@http/host-deno-local": "jsr:@http/host-deno-local@^0.18.0",
"@std/assert": "jsr:@std/assert@^1.0.0-rc.2",
"@std/ulid": "jsr:@std/ulid@^1.0.0-rc.2"
},
"publish": {
"exclude": [
".github",
"deno.lock"
]
}
}