-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
35 lines (35 loc) · 927 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
28
29
30
31
32
33
34
35
{
"name": "@dldc/zendb",
"version": "10.0.0",
"exports": "./mod.ts",
"imports": {
"@db/sqlite": "jsr:@db/sqlite@^0.11.1",
"@dldc/erreur": "jsr:@dldc/erreur@^7.1.1",
"@dldc/sqlite": "jsr:@dldc/sqlite@^3.1.0",
"@std/expect": "jsr:@std/expect@^0.224.2",
"dedent": "npm:dedent@^1.5.3",
"sql-formatter": "npm:sql-formatter@^15.3.1"
},
"unstable": [
"ffi"
],
"tasks": {
"test:run": "deno test -A",
"test:watch": "deno test -A --watch",
"test:coverage": "deno test -A --coverage && deno coverage coverage --html",
"bump": "deno run -A jsr:@mys/bump@1",
"update": "deno run -A jsr:@molt/cli deno.json",
"update:commit": "deno task -q update --commit deno.json",
"check": "deno fmt --check . && deno lint . && deno task test:run"
},
"lint": {
"rules": {
"exclude": [
"no-explicit-any"
]
}
},
"exclude": [
"tests/data"
]
}