-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathdeno.jsonc
More file actions
36 lines (36 loc) · 1.42 KB
/
deno.jsonc
File metadata and controls
36 lines (36 loc) · 1.42 KB
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
30
31
32
33
34
35
36
{
"workspace": [
"denops/@denops-private"
],
"tasks": {
"check": "deno check **/*.ts",
"check:doc": "deno test --doc --no-run",
"test": "LANG=C deno test -A --parallel --shuffle",
"test:coverage": "deno task test --coverage=.coverage",
"coverage": "deno coverage --exclude=\"test[.]ts(#.*)?$\" --exclude=\"/tests/\" --exclude=\"import_map_importer\" .coverage",
"update": "deno outdated --update --latest --recursive",
"update:interactive": "deno task update -- --interactive",
"apply:supported-versions": "deno run --allow-read --allow-write .scripts/apply_supported_versions.ts"
},
"exclude": [
".coverage/",
"tests/denops/testdata/no_check/",
"tests/denops/testdata/with_import_map/",
"tests/denops/testdata/with_import_map_jsonc/"
],
"imports": {
"/denops-private/": "./denops/@denops-private/",
"/denops-testdata/": "./tests/denops/testdata/",
"/denops-testutil/": "./tests/denops/testutil/",
"@core/asyncutil": "jsr:@core/asyncutil@^1.2.0",
"@core/streamutil": "jsr:@core/streamutil@^1.0.0",
"@denops/core": "jsr:@denops/core@^8.0.0",
"@milly/streams": "jsr:@milly/streams@^1.0.4",
"@nick/dispose": "jsr:@nick/dispose@^1.1.0",
"@std/assert": "jsr:@std/assert@^1.0.14",
"@std/async": "jsr:@std/async@^1.0.14",
"@std/path": "jsr:@std/path@^1.1.2",
"@std/testing": "jsr:@std/testing@^1.0.15",
"sinon": "npm:sinon@^21.0.0"
}
}