-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
37 lines (37 loc) · 1.38 KB
/
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
31
32
33
34
35
36
37
{
"name": "@cross/kv",
"version": "0.17.3",
"exports": {
".": "./mod.ts",
"./cli": "./src/cli/mod.ts"
},
"lint": {
"rules": {
"exclude": [
"no-node-globals"
]
}
},
"compilerOptions": {
"useUnknownInCatchVariables": false
},
"imports": {
"@cross/fs": "jsr:@cross/fs@~0.1.11",
"@cross/runtime": "jsr:@cross/runtime@^1.1.0",
"@cross/test": "jsr:@cross/test@~0.0.10",
"@cross/utils": "jsr:@cross/utils@~0.16.0",
"@std/assert": "jsr:@std/assert@~1.0.4",
"@std/path": "jsr:@std/path@~1.0.4",
"cbor-x": "npm:cbor-x@~1.6.0"
},
"publish": {
"exclude": [".github", "test/*"]
},
"tasks": {
"cli": "deno run -A src/cli/mod.ts",
"check": "deno fmt --check && deno lint && deno check mod.ts && deno check src/cli/mod.ts && deno doc --lint mod.ts && deno test --allow-read --allow-write --allow-env --allow-net --allow-sys --allow-run --unstable-kv --coverage=cov_profile && echo \"Generating coverage\" && deno coverage cov_profile --exclude=test/ --lcov --output=cov_profile.lcov",
"check-coverage": "deno task check && genhtml cov_profile.lcov --output-directory cov_profile/html && lcov --list cov_profile.lcov && deno run --allow-net --allow-read https://deno.land/std/http/file_server.ts cov_profile/html",
"bench": "deno bench -A --unstable-kv",
"check-deps": "deno run -rA jsr:@check/deps"
}
}