Module

x/r2d2/deno.json

Minimal Redis Client for Deno.
Latest
File
{ "imports": { "https://deno.land/x/r2d2/": "./" }, "tasks": { "redis:start": "redis-server --save \"\" --appendonly no --daemonize yes", "test": "deno test --allow-net --trace-ops --coverage=cov --doc --parallel", "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", "cov:clean": "rm -rf cov html_cov cov.lcov", "cov:gen": "deno coverage ./cov/ --lcov --output=cov.lcov", "cov:view": "genhtml -o html_cov cov.lcov && open html_cov/index.html", "ok": "deno fmt --check && deno lint && deno task test", "ok:dev": "deno fmt --check && deno lint && deno task test:dev", "update:dev": "deno run -A https://deno.land/x/udd/main.ts --test=\"deno task ok:dev\" mod.ts test.ts", "update": "deno run -A https://deno.land/x/udd/main.ts --test=\"deno task ok\" mod.ts test.ts" }, "exclude": [ "/cov" ]}