-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
34 lines (34 loc) · 953 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
{
"name": "@kitsonk/kv-toolbox",
"version": "0.24.0",
"exports": {
".": "./toolbox.ts",
"./batched_atomic": "./batched_atomic.ts",
"./blob": "./blob.ts",
"./crypto": "./crypto.ts",
"./keys": "./keys.ts"
},
"publish": {
"exclude": [
"*.bench.ts",
"*.test.ts",
".github",
".vscode",
"_fixtures",
"_test_util.ts"
]
},
"tasks": {
"bench": "deno bench --allow-read --allow-write --unstable-kv",
"check": "deno fmt --check && deno lint && deno check --doc *.ts",
"coverage": "deno coverage --lcov --output=cov.lcov ./cov",
"test": "deno test --allow-read --allow-write --unstable-kv --parallel",
"test:ci": "deno test --allow-read --allow-write --unstable-kv --coverage=./cov --parallel"
},
"lock": false,
"imports": {
"@deno/kv-utils": "jsr:@deno/kv-utils@^0.1.2",
"@std/assert": "jsr:@std/assert@~1",
"@std/bytes": "jsr:@std/bytes@~1"
}
}