-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
27 lines (27 loc) · 1.19 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
{
"name": "@jersou/clite",
"version": "0.7.6",
"exports": "./mod.ts",
"license": "MIT",
"tasks": {
"fmt": "deno fmt --ignore=tmp,.cov_profile,src/test-data/bad-config.json,node",
"run": "deno run -A example.ts",
"check": "deno check mod.ts",
"gen-cov": "./gen-cov.ts",
"gen-cov-watch": "deno run -A --watch=mod.ts,mod.test.ts,src/ gen-cov.ts",
"lint": "deno lint --ignore=tmp,.cov_profile,examples,node",
"pre-commit": "deno task fmt --check && deno task lint && deno task test && deno task check",
"publish-dry-run": "deno publish --dry-run",
"test": "deno test -A --ignore=tmp,.cov_profile,node --quiet",
"test-watch": "deno test -A --watch --ignore=tmp,.cov_profile,node --quiet",
"run-example": "deno run examples/example-lite.ts --retry=7 down true 3",
"update-changelog": "conventional-changelog -p conventionalcommits --same-file -i CHANGELOG.md -k deno.json && deno task fmt"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/cli/parse-args": "jsr:@std/[email protected]/parse-args",
"@std/collections": "jsr:@std/collections@^1.0.9",
"@std/fmt/colors": "jsr:@std/[email protected]/colors",
"@std/text": "jsr:@std/[email protected]"
}
}