forked from dahlia/logtape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
36 lines (36 loc) · 1.16 KB
/
deno.json
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
{
"name": "@logtape/logtape",
"version": "0.5.0",
"exports": {
".": "./logtape/mod.ts",
"./types": "./logtape/types.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.1",
"@std/assert": "jsr:@std/assert@^0.222.1",
"@std/async": "jsr:@std/async@^0.222.1",
"@std/fs": "jsr:@std/fs@^0.223.0",
"@std/testing": "jsr:@std/testing@^0.222.1",
"consolemock": "npm:consolemock@^1.1.0",
"which_runtime": "https://deno.land/x/[email protected]/mod.ts"
},
"exclude": [
"*-venv/",
"coverage/",
"npm/"
],
"unstable": [
"fs"
],
"lock": false,
"tasks": {
"check": "deno check **/*.ts && deno lint && deno fmt --check",
"test": "deno test --allow-read --allow-write",
"coverage": "rm -rf coverage && deno task test --coverage && deno coverage --html coverage",
"dnt": "deno run -A dnt.ts",
"test-all": "deno task test && deno task dnt && cd npm/ && bun run ./test_runner.js && cd ../",
"hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": "deno task check",
"hooks:pre-push": "deno task test"
}
}