forked from denoland/deno_kv_oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
23 lines (23 loc) · 1.03 KB
/
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
{
"lock": false,
"imports": {
"https://deno.land/x/deno_kv_oauth@$VERSION/": "./",
"$fresh/": "https://deno.land/x/fresh@1.4.2/",
"preact": "https://esm.sh/preact@10.15.1",
"preact/": "https://esm.sh/preact@10.15.1/",
"preact-render-to-string": "https://esm.sh/*preact-render-to-string@6.2.1"
},
"tasks": {
"demo": "deno run --allow-net --allow-env --allow-read --unstable --watch=demo.ts,mod.ts demo.ts",
"check:license": "deno run -A tools/check_license.ts --check",
"check:types": "deno check --unstable **/*.ts",
"check": "deno task check:license && deno task check:types",
"test": "KV_PATH=:memory: deno test --unstable --allow-env --allow-read --allow-run --parallel --trace-ops --coverage=./cov",
"ok": "deno fmt --check && deno lint && deno task check && deno task test",
"cov": "deno coverage ./cov/ --lcov --exclude='test.ts|testdata' > cov.lcov",
"update": "deno run -A https://deno.land/x/udd/main.ts --test=\"deno task test\" deps.ts dev_deps.ts"
},
"exclude": [
"cov/"
]
}