-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
27 lines (27 loc) · 797 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
{
"tasks": {
"serve": "deno serve source/app.ts",
"dev": "deno serve --watch source/app.ts",
"bump": "deno add jsr:@std/assert jsr:@std/http npm:simple-icons@latest npm:svg-path-bbox npm:svgpath",
"update-lockfile": "deno cache --reload source/*.ts test/*.ts",
"test": "deno fmt --check && deno lint && deno check source/*.ts test/*.ts && deno test --clean --coverage && deno coverage"
},
"fmt": {
"useTabs": true,
"singleQuote": true,
"exclude": [
".vscode",
"coverage",
"CODE_OF_CONDUCT.md",
"CONTRIBUTING.md",
"README.md"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/http": "jsr:@std/http@^1.0.11",
"simple-icons": "npm:simple-icons@^13.18.0",
"svg-path-bbox": "npm:svg-path-bbox@^2.1.0",
"svgpath": "npm:svgpath@^2.6.0"
}
}