-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
27 lines (27 loc) · 975 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
{
"name": "@iuioiua/r2d2",
"version": "2.1.2",
"exports": "./mod.ts",
"imports": {
"@db/redis": "jsr:@db/redis@^0.37.0",
"@std/assert": "jsr:@std/assert@^1.0.9",
"@std/async": "jsr:@std/async@^1.0.9",
"@std/bytes": "jsr:@std/bytes@^1.0.4",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/io": "jsr:@std/io@^0.225.0",
"ioredis": "npm:ioredis@^5.4.1",
"redis": "npm:redis@^4.7.0"
},
"tasks": {
"redis:start": "redis-server --save \"\" --appendonly no --daemonize yes",
"test": "deno test --allow-net --trace-leaks --coverage --doc --parallel --clean",
"test:dev": "deno task redis:start && deno task test || redis-cli SHUTDOWN",
"bench": "deno bench --allow-net --allow-env",
"bench:dev": "deno task redis:start && deno task bench",
"ok": "deno fmt --check && deno lint && deno task test",
"ok:dev": "deno fmt --check && deno lint && deno task test:dev"
},
"exclude": [
"/coverage"
]
}