-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
29 lines (29 loc) · 807 Bytes
/
deno.json
File metadata and controls
29 lines (29 loc) · 807 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
25
26
27
28
29
{
"name": "@utility/version",
"version": "1.8.0",
"exports": "./main.ts",
"tasks": {
"coverage": "deno task test --coverage=./dist/coverage && deno coverage --include=src --lcov ./dist/coverage > ./dist/coverage/lcov.info",
"test": "deno test --allow-write --allow-read --allow-run"
},
"exclude": [
"dist",
".run",
".github/",
"version.json"
],
"publish": {
"exclude": [
"test/"
]
},
"imports": {
"@cliffy/command": "jsr:@cliffy/command@^1.0.0-rc.4",
"@cliffy/prompt": "jsr:@cliffy/prompt@^1.0.0-rc.4",
"@std/assert": "jsr:@std/assert@^0.220.1",
"@std/path": "jsr:@std/path@^0.221.0",
"@std/semver": "jsr:@std/semver@^0.220.1",
"@std/testing": "jsr:@std/testing@^0.220.1",
"@utility/git": "jsr:@utility/git@^0.2.0"
}
}