-
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) · 1.04 KB
/
Copy pathdeno.json
File metadata and controls
37 lines (37 loc) · 1.04 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
{
"fmt": {
"exclude": [".github", "**/*.yaml", "**/*.yml", "**/*.jsonc", "**/*.json"],
"lineWidth": 120,
"semiColons": false,
"singleQuote": true,
"trailingCommas": "onlyMultiLine"
},
"imports": {
"@meop/shire": "jsr:@meop/shire@^0.10.2",
"@std/assert": "jsr:@std/assert@^1.0.19",
"@std/fs": "jsr:@std/fs@^1.0.24",
"@std/path": "jsr:@std/path@^1.1.6",
"@std/testing": "jsr:@std/testing@^1.0.20",
"@std/toml": "jsr:@std/toml@^1.0.11",
"@std/yaml": "jsr:@std/yaml@^1.2.0"
},
"links": [
"../shire"
],
"lint": {
"rules": {
"tags": ["recommended"]
}
},
"tasks": {
"check": "deno check src/**/*.ts",
"format": "deno fmt",
"format:check": "deno fmt --check",
"lint": "deno lint",
"start": "deno run --allow-all --watch src/srv.ts",
"start:systemd": "bash .systemd/user.sh up",
"stop:systemd": "bash .systemd/user.sh down",
"test": "WUT_ENV=test deno test --allow-all src/",
"test:update": "WUT_ENV=test deno test --allow-all src/ -- --update"
}
}