-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
24 lines (24 loc) · 811 Bytes
/
deno.json
File metadata and controls
24 lines (24 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "@claudiu-ceia/combine",
"version": "0.3.0",
"exports": {
".": "./mod.ts",
"./nondeterministic": "./src/nondeterministic.ts",
"./perf": "./src/perf.ts"
},
"publish": {
"exclude": ["bench/", "tests/", "npm/"]
},
"tasks": {
"check": "deno fmt && deno lint && deno test --ignore=npm",
"coverage": "deno test --ignore=npm --clean --coverage=.coverage && deno coverage --detailed --html .coverage",
"build:npm": "deno run -A scripts/build-npm.ts",
"hooks:install": "ln -sf ../../scripts/pre-commit .git/hooks/pre-commit && chmod +x scripts/pre-commit",
"hooks:uninstall": "rm -f .git/hooks/pre-commit"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.17",
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"parsimmon": "npm:parsimmon@1.18.1"
}
}