-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdeno.json
43 lines (43 loc) · 1.35 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": "4.1.3",
"exports": {
".": "./src/index.ts",
"./web": "./src/web.ts"
},
"tasks": {
"all-tests": "deno install --allow-scripts=npm:[email protected] && 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-tests && deno run -A src/incrementVersion.ts major"
},
"publish": {
"exclude": [
"test",
".github"
]
},
"nodeModulesDir": "auto",
"imports": {
"@duckdb/duckdb-wasm": "npm:@duckdb/[email protected]",
"@duckdb/node-api": "npm:@duckdb/[email protected]",
"@nshiab/journalism": "jsr:@nshiab/[email protected]",
"@observablehq/plot": "npm:@observablehq/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"apache-arrow": "npm:[email protected]"
},
"fmt": {
"exclude": [
".sda-cache",
"test/output"
]
},
"compilerOptions": {
"lib": [
"dom",
"deno.ns"
]
}
}