-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
44 lines (44 loc) · 1.07 KB
/
deno.json
File metadata and controls
44 lines (44 loc) · 1.07 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "@denostack/weakref",
"version": "0.2.3",
"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 --v8-flags=--expose-gc",
"test:types": "find . -name '*.ts' -not -path './.npm/*' | xargs deno check",
"build:npm": "deno run --allow-env --allow-read --allow-write --allow-run scripts/build_npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.3",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/fmt": "jsr:@std/fmt@^1.0.9"
},
"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"
],
"lineWidth": 120
},
"publish": {
"exclude": [
".npm",
".github",
".vscode",
"scripts",
"examples",
"**/*.test.ts"
]
}
}