forked from razakpm/spry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
18 lines (18 loc) · 730 Bytes
/
deno.json
File metadata and controls
18 lines (18 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"tasks": {
"init": "git config core.hooksPath .githooks",
"doctor": "support/bin/doctor.ts",
"update-deno-deps": "udd $(find . -type f -not -path \"./support/*\" -regex \".*\/deps\\(-test\\)?\\.ts\")",
"git-hook-pre-commit": "deno fmt --check --ignore=\"support\" && deno lint --ignore=\"support\" && deno test --parallel --allow-all --v8-flags=\"--max-old-space-size=4096\"",
"git-hook-pre-push": "deno test --parallel --allow-all --v8-flags=\"--max-old-space-size=4096\"",
"ts-check": "deno check --no-lock $(find . -name '*.ts' -not -path \"./support/*\")",
"prepare-publish": "git semtag final"
},
"lint": {
"rules": {
"exclude": [
"no-import-prefix"
]
}
}
}