-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
25 lines (25 loc) · 981 Bytes
/
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
{
"name": "@denosaurs/log",
"version": "0.0.17",
"exports": {
".": "./mod.ts",
"./utils/noop_console": "./utils/noop_console.ts",
"./utils/original_console": "./utils/original_console.ts",
"./transforms/filter": "./transforms/filter.ts",
"./transforms/group": "./transforms/group.ts",
"./transforms/omit": "./transforms/omit.ts",
"./transforms/pick": "./transforms/pick.ts",
"./transforms/fast_redact": "./transforms/fast_redact.ts",
"./transforms/redact": "./transforms/redact.ts",
"./transforms/text_encoder_stream": "./transforms/text_encoder_stream.ts",
"./writables/console": "./writables/console.ts",
"./writables/std": "./writables/std.ts"
},
"lock": false,
"tasks": {
"prepare": "deno task examples:prepare && deno task bench:prepare",
"examples:prepare": "cd examples && deno task prepare",
"bench:prepare": "cd benchmarks && deno task prepare",
"bench": "cd benchmarks && deno task bench"
}
}