-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
30 lines (30 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
28
29
30
{
"name": "@denostack/weakref",
"version": "0.2.1",
"tasks": {
"test": "deno task test:unit && deno task test:lint && deno task test:format && deno task test:types",
"test:format": "deno fmt --check",
"test:lint": "deno lint",
"test:unit": "deno test -A",
"test:types": "deno check mod.ts",
"build:npm": "deno run --allow-sys --allow-env --allow-read --allow-write --allow-net --allow-run scripts/build_npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
"@std/assert": "jsr:@std/assert@^0.221.0",
"@std/fmt": "jsr:@std/fmt@^0.221.0"
},
"exports": {
".": "./mod.ts",
"./iterable_weak_map": "./iterable_weak_map.ts",
"./iterable_weak_set": "./iterable_weak_set.ts",
"./weak_value_map": "./weak_value_map.ts"
},
"lint": {
"exclude": [".npm"]
},
"fmt": {
"exclude": [".npm"]
},
"lock": false
}