-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
32 lines (32 loc) · 994 Bytes
/
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
{
"name": "@nshiab/journalism",
"version": "1.19.1",
"exports": {
".": "./src/index.ts",
"./web": "./src/web.ts"
},
"tasks": {
"all-tests": "deno install && deno fmt --check && deno lint && deno check src/index.ts && deno publish --allow-dirty --dry-run && deno test -A --fail-fast",
"test-coverage": "deno test -A --fail-fast --coverage=cov_profile && deno coverage cov_profile",
"patch-no-tests": "deno run -A src/incrementVersion.ts patch",
"patch": "deno task all-tests && deno run -A src/incrementVersion.ts patch",
"minor": "deno task all-tests && deno run -A src/incrementVersion.ts minor",
"major": "deno-task all-testes && deno run -A src/incrementVersion.ts major"
},
"publish": {
"exclude": [
"test",
".github"
]
},
"nodeModulesDir": "auto",
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2"
},
"fmt": {
"exclude": [
"test/output"
]
}
}