-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
28 lines (28 loc) · 1.07 KB
/
deno.json
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
{
"tasks": {
"build": "deno run --allow-read --allow-write scripts/build.ts",
"publint": "deno lint dist && deno check dist && deno run --allow-read --allow-env npm:publint",
"test": "deno test --allow-read --allow-write --watch",
"update-snapshots": "deno test --allow-read --allow-write -- --update",
"changesets": "deno run -A npm:@changesets/cli",
"ci:test": "deno test -A --clean --coverage=coverage --junit-path=coverage/junit.xml",
"ci:coverage": "deno coverage --lcov --output=./coverage/coverage.lcov",
"ci:changesets:version": "deno run -A npm:@changesets/cli version",
"ci:changesets:publish": "deno run -A npm:@changesets/cli publish"
},
"fmt": {
"useTabs": false,
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve"
},
"nodeModulesDir": "auto",
"imports": {
"@lambdalisue/sandbox": "jsr:@lambdalisue/sandbox@^2.0.1",
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/testing": "jsr:@std/testing@^1.0.5"
}
}