generated from hyper63/adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
17 lines (17 loc) · 886 Bytes
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"tasks": {
"prepare": "deno run -A --no-lock npm:husky@^9",
"staged": "deno run -A --no-lock npm:lint-staged@^15",
"cache": "deno cache --lock=deno.lock --lock-write deps.ts dev_deps.ts",
"test": "deno lint && deno fmt --check && deno test -A --no-lock --unstable --ignore='*.integration.test.ts'",
"test:integration-native": "deno test -A --unstable adapter.native.integration.test.ts",
"test:suite": "deno test --allow-net --allow-env --no-check --no-lock --import-map=https://raw.githubusercontent.com/hyper63/hyper/hyper-test%40v2.1.4/packages/test/import_map.json https://raw.githubusercontent.com/hyper63/hyper/hyper-test%40v2.1.4/packages/test/mod.js",
"test:harness": "deno run --unstable --no-check --no-lock -A ./test/hyper.ts"
},
"fmt": {
"include": ["./"],
"lineWidth": 100,
"singleQuote": true,
"semiColons": false
}
}