-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdeno.json
43 lines (43 loc) · 1.33 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
{
"name": "@nshiab/simple-data-analysis",
"version": "3.19.1",
"exports": {
".": "./src/index.ts",
"./web": "./src/web.ts"
},
"tasks": {
"all-tests": "deno install --allow-scripts=npm:playwright-chromium,npm:duckdb && 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": {
"@duckdb/duckdb-wasm": "npm:@duckdb/duckdb-wasm@1.29.0",
"@nshiab/journalism": "jsr:@nshiab/journalism@^1.21.9",
"@observablehq/plot": "npm:@observablehq/plot@^0.6.16",
"@std/assert": "jsr:@std/assert@^1.0.9",
"apache-arrow": "npm:apache-arrow@^18.1.0",
"duckdb": "npm:duckdb@1.1.3"
},
"fmt": {
"exclude": [
".sda-cache",
"test/output"
]
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
]
}
}