-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
29 lines (29 loc) · 966 Bytes
/
deno.jsonc
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
28
29
{
"version": "2.0.6",
"name": "@esroyo/hono-webc",
"exports": "./mod.ts",
"tasks": {
"coverage": "rm -rf coverage && deno task test --reporter=dot --coverage=coverage && deno coverage --lcov --output=coverage.lcov coverage && genhtml -o coverage/report coverage.lcov",
"dev": "deno run --inspect --watch --allow-env --allow-read --allow-write --allow-net --allow-hrtime --allow-sys --unstable-kv test/main.ts",
"fmt": "deno fmt src/ test/ deps.ts dev_deps.ts",
"tag-version": "deno run -A npm:commit-and-tag-version && git push --follow-tags origin main",
"test": "deno test --allow-env --allow-read --allow-write --allow-hrtime --allow-sys --unstable-kv"
},
"fmt": {
"indentWidth": 4,
"singleQuote": true
},
"compilerOptions": {
"experimentalDecorators": false
},
"publish": {
"include": [
"deps.ts",
"mod.ts",
"src/",
"README.md",
"CHANGELOG.md",
"deno.jsonc"
]
}
}