-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
25 lines (25 loc) · 645 Bytes
/
deno.json
File metadata and controls
25 lines (25 loc) · 645 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
{
"name": "@utility/git",
"version": "0.4.1",
"tasks": {
"coverage": "deno task test --coverage=./dist/coverage && deno coverage --include=src --lcov ./dist/coverage > ./dist/coverage/lcov.info",
"test": "deno test --allow-write=./test/ --allow-read=./test/ --allow-run=git --allow-net=https://github.com"
},
"exports": "./mod.ts",
"exclude": [
"dist",
".run",
".github/",
"version.json"
],
"publish": {
"exclude": [
"test/"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@^0.220.1",
"@std/path": "jsr:@std/path@^0.220.1",
"@std/testing": "jsr:@std/testing@^0.220.1"
}
}