-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
deno.json
37 lines (37 loc) · 1.19 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
37
{
"name": "@logtape/logtape",
"version": "0.9.0",
"license": "MIT",
"exports": "./logtape/mod.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/path": "jsr:@std/path@^1.0.2",
"@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/",
".github/",
"coverage/",
"docs/",
"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"
}
}