forked from oliver-oloughlin/kvdex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
31 lines (31 loc) · 866 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
{
"name": "@olli/kvdex",
"version": "2.0.2",
"exports": {
".": "./mod.ts",
"./zod": "./ext/zod.ts",
"./migrate": "./ext/migrate.ts"
},
"tasks": {
"check": "deno check mod.ts src/*.ts ext/*.ts tests/*.ts tests/**/*.ts benchmarks/**/*ts",
"test": "deno test --allow-write --allow-read --allow-ffi --allow-sys --unstable-kv --trace-leaks",
"bench": "deno bench --unstable-kv",
"prep": "deno task check && deno fmt && deno lint && deno publish --dry-run --allow-dirty && deno task test",
"cache": "deno cache -r mod.ts && deno cache -r ext/zod.ts && deno cache -r ext/migrate.ts"
},
"fmt": {
"semiColons": false
},
"lint": {
"rules": {
"exclude": ["no-explicit-any"],
"include": ["no-console"]
}
},
"test": {
"include": ["./tests"]
},
"bench": {
"include": ["./benchmarks"]
}
}