-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
30 lines (30 loc) · 921 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
26
27
28
29
30
{
"name": "@cross/utils",
"version": "0.16.0",
"exports": {
".": "./mod.ts",
"./ansi": "./utils/ansi.ts",
"./args": "./utils/args.ts",
"./exit": "./utils/exit.ts",
"./pid": "./utils/pid.ts",
"./spawn": "./utils/spawn.ts",
"./table": "./utils/table.ts",
"./execpath": "./utils/execpath.ts",
"./sysinfo": "./utils/sysinfo.ts",
"./objectManip": "./utils/objectManip.ts",
"./stdio": "./utils/stdio.ts"
},
"imports": {
"@cross/fs": "jsr:@cross/fs@^0.1.11",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@cross/test": "jsr:@cross/test@^0.0.9",
"@std/assert": "jsr:@std/assert@^1.0.4"
},
"publish": {
"exclude": [".github", "*.test.ts"]
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check mod.ts && deno doc --lint mod.ts && deno run -A mod.ts --slim --ignore-unused",
"check-deps": "deno run -rA jsr:@check/deps"
}
}