-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeno.json
More file actions
38 lines (38 loc) · 1.2 KB
/
deno.json
File metadata and controls
38 lines (38 loc) · 1.2 KB
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
{
"name": "@cross/image",
"version": "0.4.3",
"exports": {
".": "./mod.ts"
},
"fmt": {
"lineWidth": 100
},
"lint": {
"rules": {
"exclude": [
"no-node-globals"
]
}
},
"compilerOptions": {
"useUnknownInCatchVariables": false,
"lib": ["deno.ns", "deno.unstable", "esnext", "dom", "dom.iterable"]
},
"imports": {
"@cross/dir": "jsr:@cross/dir@^1.1.0",
"@cross/fs": "jsr:@cross/fs@^0.1.13",
"@cross/test": "jsr:@cross/test@^0.0.14",
"@deno/dnt": "jsr:@deno/dnt@^0.42.3",
"@std/assert": "jsr:@std/assert@^1",
"@std/path": "jsr:@std/path@^1"
},
"publish": {
"exclude": [".github", "test/*", "test_output/*", "docs/*", "examples/*"]
},
"tasks": {
"precommit": "deno fmt --check && deno lint && deno check mod.ts && deno check test/*.test.ts && deno check test/**/*.test.ts && deno test -A test/",
"check": "deno fmt --check && deno lint && deno check mod.ts && deno test -A test/ --coverage=cov_profile && echo \"Generating coverage\" && deno coverage cov_profile --exclude=test/ --lcov --output=cov_profile.lcov",
"check-deps": "deno run -rA jsr:@check/deps",
"build:npm": "deno run -A scripts/build_npm.ts"
}
}