-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
46 lines (46 loc) · 1.29 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
{
"name": "@core/pipe",
"version": "0.0.0",
"exports": {
".": "./mod.ts",
"./async": "./async/mod.ts",
"./async/compose": "./async/compose.ts",
"./async/operator": "./async/operator.ts",
"./async/pipe": "./async/pipe.ts",
"./compose": "./compose.ts",
"./operator": "./operator.ts",
"./pipe": "./pipe.ts"
},
"exclude": [
".coverage/**"
],
"publish": {
"include": [
"**/*.ts",
"README.md",
"LICENSE"
],
"exclude": [
"**/*_test.ts",
"**/*_bench.ts",
".*"
]
},
"imports": {
"@core/pipe": "./mod.ts",
"@core/pipe/async": "./async/mod.ts",
"@cross/test": "jsr:@cross/test@^0.0.9",
"@std/assert": "jsr:@std/assert@^1.0.2",
"@std/jsonc": "jsr:@std/jsonc@^1.0.0",
"@std/path": "jsr:@std/path@^1.0.2",
"@std/testing": "jsr:@std/testing@^1.0.0"
},
"tasks": {
"check": "deno check **/*.ts",
"test": "deno test -A --doc --parallel --shuffle",
"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 deps: --pre-commit=fmt,lint"
}
}