-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
24 lines (24 loc) · 855 Bytes
/
deno.json
File metadata and controls
24 lines (24 loc) · 855 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
{
"name": "@sander/html",
"version": "0.1.12",
"license": "MIT",
"exports": "./mod.ts",
"tasks": {
"test": "deno test --doc",
"test:watch": "deno test --watch",
"doc": "deno doc --html html.ts",
"coverage": "rm -Rf ./coverage && deno test --coverage && deno coverage ./coverage",
"coverage:html": "rm -Rf ./coverage && deno test --coverage && deno coverage ./coverage --html",
"embed:example": "deno run -A embed_example.ts",
"tsc": "deno run -A npm:typescript/tsc --project tsconfig.json && deno fmt dist",
"hook": "deno run --allow-read --allow-run --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts"
},
"authors": [
"Sander Hahn <sanderhahn@gmail.com>"
],
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.10",
"typescript": "npm:typescript@^5.7.3"
},
"nodeModulesDir": "auto"
}