-
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) · 845 Bytes
/
deno.json
File metadata and controls
37 lines (37 loc) · 845 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
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "@acr/dbx",
"license": "MIT",
"exports": "./mod.ts",
"fmt": {
"lineWidth": 180,
"include": [
"src/",
"test/"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1",
"@std/async": "jsr:@std/async@^1",
"@std/cache": "jsr:@std/cache@^0",
"@std/collections": "jsr:@std/collections@^1",
"@std/fmt": "jsr:@std/fmt@^1",
"@std/fs": "jsr:@std/fs@^1",
"@std/http": "jsr:@std/http@^1"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"mod.ts",
"src/**/*.ts"
]
},
"tasks": {
"check": "deno check **/*.ts && deno lint && deno fmt --check",
"lint": "deno lint src test",
"release": "release",
"test": "deno test -A --unstable-kv",
"test-mysql": "./test/test-mysql.sh",
"test-postgres": "./test/test-postgres.sh"
}
}