-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
51 lines (51 loc) · 1.31 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@dx/tano",
"version": "0.5.10",
"license": "MIT",
"exports": {
".": "./mod.ts",
"./tano": "./tano.ts"
},
"tasks": {
"lock": "deno cache ./mod.ts ./src/**/*.ts",
"test": "deno test --allow-run -RWE --unstable-kv",
"run": "cd ./examples && deno run --allow-run -RWE --unstable-kv ../tano.ts --no-cache=true --file ./tanofile.ts",
"check": "deno task lock && deno fmt --check && deno lint && deno task test && deno task run && deno publish --dry-run",
"update": "deno outdated --update --latest"
},
"imports": {
"@std/path": "jsr:@std/[email protected]",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/fmt": "jsr:@std/fmt@^1.0.5",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/testing": "jsr:@std/testing@^1.0.9",
"@std/datetime": "jsr:@std/datetime@^0.225.3",
"@std/log": "jsr:@std/log@^0.224.14",
"@std/cli": "jsr:@std/cli@^1.0.13"
},
"publish": {
"exclude": [
".github",
".vscode",
"docs",
"examples",
".gitignore",
".editorconfig",
"deno.lock",
"**/*.test.ts",
"tanofile.ts"
]
},
"fmt": {
"useTabs": false,
"lineWidth": 360,
"indentWidth": 2,
"singleQuote": true,
"proseWrap": "preserve",
"exclude": [
".github",
".vscode/**",
".tano/**"
]
}
}