generated from ryoppippi/deno-jsr-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.jsonc
44 lines (44 loc) · 1.08 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
38
39
40
41
42
43
44
{
"name": "@ryoppippi/mirror-jsr-to-npm",
"version": "0.1.4",
"tasks": {
"dev": "deno run --watch mod.ts",
"check": "deno check ./**/*.ts && deno fmt --check",
"lint": "deno lint ./**/*.ts",
"test": "deno test -A --parallel --doc",
"test:coverage": "deno task test --coverage=.coverage",
"coverage:show": "deno coverage .coverage",
"coverage:lco": "deno coverage --lcov .coverage > .coverage/lcov.info",
"release": "deno run -A npm:bumpp --ignore-scripts"
},
"fmt": {
"exclude": [
"*.md"
]
},
"imports": {
"@cross/test": "jsr:@cross/test@^0.0.9",
"@david/dax": "jsr:@david/dax@^0.41.0",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/semver": "jsr:@std/semver@^1.0.2",
"nrd": "npm:nrd@^1.1.3",
"publint": "npm:publint@^0.2.10",
"type-fest": "npm:type-fest@^4.26.0"
},
"exports": "./mod.ts",
"publish": {
"exclude": [
".vscode",
".github",
".gitignore",
".coverage"
]
},
"keywords": [],
"exclude": [
".vscode",
"mod_test.ts",
"__snapshots__",
".github"
]
}