-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
21 lines (21 loc) · 808 Bytes
/
deno.json
File metadata and controls
21 lines (21 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"fmt": {
"options": {
"lineWidth": 120
},
"files": {
"exclude": [
"out"
]
}
},
"tasks": {
"backport": "rm -rf out && npm install --no-package-lock && deno run --no-prompt --allow-read=. --allow-write=. https://lib.deno.dev/x/deno2node@v1/src/cli.ts",
"test": "deno test --parallel ./test/",
"coverage": "deno task test --coverage=./test/cov_profile && deno coverage --lcov --output=./coverage.lcov ./test/cov_profile",
"check": "deno cache --check=all src/mod.ts",
"dev": "deno fmt && deno lint && deno task test && deno task check",
"pre-commit": "deno fmt --check && deno lint && deno task test && deno task check",
"hook": "deno run --allow-run=git --allow-read --allow-write https://deno.land/x/deno_hooks@0.1.1/mod.ts"
}
}