-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
27 lines (27 loc) · 771 Bytes
/
deno.json
File metadata and controls
27 lines (27 loc) · 771 Bytes
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
{
"name": "@cross/fs",
"version": "0.1.14",
"exports": {
".": "./mod.ts",
"./stat": "./src/stat/mod.ts",
"./io": "./src/io/mod.ts",
"./ops": "./src/ops/mod.ts"
},
"imports": {
"@cross/dir": "jsr:@cross/dir@^1.1.0",
"@cross/env": "jsr:@cross/env@^1.0.0",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@cross/test": "jsr:@cross/test@^0.0.14",
"@cross/utils": "jsr:@cross/utils@^0.16.0",
"@std/assert": "jsr:@std/assert@^1.0.12",
"@std/path": "jsr:@std/path@^1.0.8"
},
"publish": {
"exclude": [".github", "*.test.ts"]
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check mod.ts && deno task check-deps",
"test": "deno test -A",
"check-deps": "deno run -rA jsr:@check/deps"
}
}