-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
37 lines (37 loc) · 935 Bytes
/
deno.json
File metadata and controls
37 lines (37 loc) · 935 Bytes
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
{
"name": "@denostack/timerider",
"version": "0.1.0",
"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",
"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.15",
"@std/fmt": "jsr:@std/fmt@^1.0.8",
"@std/testing": "jsr:@std/testing@^1.0.16"
},
"exports": {
".": "./mod.ts"
},
"lint": {
"exclude": [".npm"]
},
"fmt": {
"exclude": [".npm"],
"lineWidth": 120
},
"publish": {
"exclude": [
".github",
".vscode",
"scripts",
"examples",
"**/*.test.ts"
]
}
}