-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.json
More file actions
32 lines (32 loc) · 996 Bytes
/
deno.json
File metadata and controls
32 lines (32 loc) · 996 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
30
31
32
{
"name": "@nell/git-annex-javascript",
"license": "MIT",
"version": "0.1.0",
"exports": "./src/mod.ts",
"publish": {
"include": [
"."
]
},
"fmt": {
"semiColons": false,
"proseWrap": "preserve"
},
"tasks": {
"tests": "deno test --allow-read --allow-write --allow-env --allow-sys ./",
"coverage": "deno test --allow-read --allow-write --allow-net --allow-env --allow-sys --coverage ./ && deno coverage ./coverage --lcov > ./coverage.lcov"
},
"imports": {
"ignore": "npm:ignore@^5.3.0",
"@sentry/deno": "npm:@sentry/deno@^8.55.0",
"@std/assert": "jsr:@std/assert@^1.0.11",
"@std/encoding": "jsr:@std/encoding@^1.0.7",
"@std/fs": "jsr:@std/fs@^1.0.13",
"@std/log": "jsr:@std/log@^0.224.14",
"@std/path": "jsr:@std/path@^1.0.8",
"@std/streams": "jsr:@std/streams@^1.0.9",
"@std/testing": "jsr:@std/testing@^1.0.9",
"isomorphic-git": "npm:isomorphic-git@1.27.1",
"hash-wasm": "npm:hash-wasm@^4.12.0"
}
}