-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.jsonc
37 lines (37 loc) · 1.02 KB
/
deno.jsonc
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
37
{
"name": "@denops/test",
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./stub": "./stub.ts",
"./tester": "./tester.ts",
"./with": "./with.ts"
},
"exclude": [
".coverage"
],
"publish": {
"include": [
"**/*.ts",
"README.md",
"LICENSE"
],
"exclude": [
"**/*_test.ts",
".*"
]
},
"tasks": {
"check": "deno check **/*.ts",
"check:doc": "deno test --doc --no-run",
"test": "deno test -A --parallel --shuffle",
"test:coverage": "deno task test --coverage=.coverage",
"coverage": "deno coverage .coverage",
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli ./*.ts",
"update:commit": "deno task -q update --commit --prefix :package: --pre-commit=fmt,lint",
"apply:supported-versions": "deno run --allow-env --allow-net --allow-read --allow-write .scripts/apply-supported-versions.ts"
},
"imports": {
"jsr:@denops/test": "./mod.ts"
}
}