-
Notifications
You must be signed in to change notification settings - Fork 5
/
deno.json
56 lines (56 loc) · 1.74 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@nshiab/journalism",
"version": "1.21.9",
"exports": {
".": "./src/index.ts",
"./web": "./src/web.ts"
},
"tasks": {
"all-tests": "deno install --allow-scripts=npm:playwright-chromium && deno fmt --check && deno lint && deno check src/index.ts && deno publish --allow-dirty --dry-run && TZ=America/Toronto 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": {
"@observablehq/plot": "npm:@observablehq/plot@^0.6.16",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@types/d3-geo": "npm:@types/d3-geo@^3.1.0",
"adm-zip": "npm:adm-zip@^0.5.16",
"cheerio": "npm:cheerio@^1.0.0",
"d3-array": "npm:d3-array@^3.2.4",
"d3-dsv": "npm:d3-dsv@^3.0.1",
"d3-geo": "npm:d3-geo@^3.1.1",
"date-fns-tz": "npm:date-fns-tz@^3.2.0",
"geotiff": "npm:geotiff@^2.1.3",
"google-auth-library": "npm:google-auth-library@^9.15.0",
"google-spreadsheet": "npm:google-spreadsheet@^4.1.4",
"playwright-chromium": "npm:playwright-chromium@^1.49.1"
},
"fmt": {
"exclude": [
"test/output",
"src/dataviz/imports"
]
},
"lint": {
"exclude": [
"src/dataviz/imports"
]
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
]
}
}