-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
28 lines (28 loc) · 866 Bytes
/
deno.jsonc
File metadata and controls
28 lines (28 loc) · 866 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
28
{
"name": "@cross/env",
"version": "1.0.3",
"exports": {
".": "./mod.ts",
"./load": "./load.ts"
},
"tasks": {
"check": "deno fmt --check && deno lint && deno check mod.ts && deno doc --lint mod.ts && deno task test && deno task check-deps --slim",
"test": "deno test --allow-env --allow-read",
"check-deps": "deno run -A jsr:@check/deps --ignore-unused",
"publish-dry": "deno publish --dry-run"
},
"lock": false,
"fmt": {
"lineWidth": 120,
"indentWidth": 4
},
"publish": {
"exclude": [".github", "*.test.ts"]
},
"imports": {
"@cross/deepmerge": "jsr:@cross/deepmerge@^1.0.0",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@cross/test": "jsr:@cross/test@^0.0.10",
"@std/assert": "jsr:@std/assert@^1.0.13"
}
}