-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
53 lines (53 loc) · 1.63 KB
/
deno.jsonc
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@core/streamutil",
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./channel": "./channel.ts",
"./collect": "./collect.ts",
"./pipe-through-from": "./pipe_through_from.ts",
"./pop": "./pop.ts",
"./provide": "./provide.ts",
"./push": "./push.ts",
"./read-all": "./read_all.ts",
"./write-all": "./write_all.ts"
},
"exclude": [
".coverage/**"
],
"publish": {
"include": [
"**/*.ts",
"README.md",
"LICENSE"
],
"exclude": [
"**/*_test.ts",
"**/*_bench.ts",
".*"
]
},
"imports": {
"@core/streamutil": "./mod.ts",
"@core/streamutil/channel": "./channel.ts",
"@core/streamutil/collect": "./collect.ts",
"@core/streamutil/pipe-through-from": "./pipe_through_from.ts",
"@core/streamutil/pop": "./pop.ts",
"@core/streamutil/provide": "./provide.ts",
"@core/streamutil/push": "./push.ts",
"@core/streamutil/read-all": "./read_all.ts",
"@core/streamutil/write-all": "./write_all.ts",
"@cross/test": "jsr:@cross/test@^0.0.9",
"@std/assert": "jsr:@std/assert@^1.0.0",
"@std/async": "jsr:@std/async@^1.0.0",
"@std/bytes": "jsr:@std/bytes@^1.0.0"
},
"tasks": {
"check": "deno check ./**/*.ts",
"test": "deno test -A --parallel --shuffle --doc",
"test:coverage": "deno task test --coverage=.coverage",
"coverage": "deno coverage .coverage",
"update": "deno run --allow-env --allow-read --allow-write=. --allow-run=git,deno --allow-net=jsr.io,registry.npmjs.org jsr:@molt/cli ./*.ts",
"update:commit": "deno task -q update --commit --prefix :package: --pre-commit=fmt,lint"
}
}