2023-08-01 02:16:15 +00:00
|
|
|
{
|
|
|
|
"tasks": {
|
|
|
|
"typecheck": "deno check **/*.js **/*.ts",
|
|
|
|
"check-all": "deno fmt --check && deno lint && deno task typecheck && deno test --allow-read"
|
|
|
|
},
|
|
|
|
"imports": {
|
2023-08-01 14:20:57 +00:00
|
|
|
"assert": "https://deno.land/std@0.196.0/testing/asserts.ts",
|
|
|
|
"mock": "https://deno.land/std@0.196.0/testing/mock.ts"
|
2023-08-01 02:16:15 +00:00
|
|
|
},
|
|
|
|
"compilerOptions": {
|
|
|
|
"lib": ["deno.ns", "dom"]
|
|
|
|
}
|
|
|
|
}
|