-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 1.03 KB
/
deno.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "@dldc/serve",
"version": "3.3.1",
"exports": "./mod.ts",
"imports": {
"@deno-library/compress": "jsr:@deno-library/compress@^0.5.5",
"@dldc/chemin": "jsr:@dldc/chemin@^12.0.0",
"@dldc/compose": "jsr:@dldc/compose@^6.0.2",
"@dldc/erreur": "jsr:@dldc/erreur@^7.1.1",
"@dldc/stack": "jsr:@dldc/stack@^7.0.0",
"@dldc/zenjson": "jsr:@dldc/zenjson@^3.0.1",
"@openjs/port-free": "jsr:@openjs/port-free@^1.0.0",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/expect": "jsr:@std/expect@^1.0.13",
"@std/http": "jsr:@std/http@^1.0.13"
},
"tasks": {
"test:run": "deno test -A",
"test:watch": "deno test -A --watch",
"bump": "deno run -A jsr:@mys/bump@1",
"update": "deno run --allow-read=. --allow-write=. --allow-net https://deno.land/x/udd@0.8.2/main.ts *.ts deno.json",
"check": "deno fmt --check . && deno lint . && deno task test:run",
"check-deps": "deno run -A jsr:@check/deps"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
}
}
}