-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeno.json
More file actions
61 lines (61 loc) · 1.84 KB
/
deno.json
File metadata and controls
61 lines (61 loc) · 1.84 KB
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
57
58
59
60
61
{
"name": "@poolifier/poolifier-web-worker",
"version": "0.6.2",
"exports": "./src/mod.ts",
"compilerOptions": {
"lib": [
"deno.worker"
],
"strict": true
},
"tasks": {
"benchmark:deno": "deno bench -A ./benchmarks/internal/bench.mjs",
"benchmark:deno:json": "deno bench -A --json ./benchmarks/internal/bench.mjs",
"benchmark:tinybench": "deno run -A ./benchmarks/internal/bench.mjs -t tinybench",
"benchmark:tinybench:debug": "deno run -A --inspect ./benchmarks/internal/bench.mjs -t tinybench",
"bundle": "deno run -A bundle.ts",
"test": "ENVIRONMENT=test deno test -A",
"test:parallel": "ENVIRONMENT=test deno test -A --parallel",
"test:coverage": "ENVIRONMENT=test deno test -A --coverage=./coverage",
"test:debug": "ENVIRONMENT=test deno test -A --inspect",
"coverage": "deno coverage ./coverage",
"coverage:report": "deno coverage ./coverage --lcov --output=./coverage/lcov.info",
"format": "deno fmt",
"format:check": "deno fmt --check",
"lint": "deno lint",
"lint:fix": "deno lint --fix",
"documentation": "deno doc ./src/mod.ts",
"hooks:install": "deno run --allow-read=deno.json,.git/hooks/ --allow-write=.git/hooks/ jsr:@hongminhee/deno-task-hooks",
"hooks:pre-commit": "deno task format && deno task lint:fix"
},
"test": {
"include": [
"./tests/**/*.test.mjs"
]
},
"fmt": {
"semiColons": false,
"singleQuote": true
},
"imports": {
"tinybench": "npm:tinybench@^6.0.0",
"@std/cli": "jsr:@std/cli@^1.0.28",
"@std/expect": "jsr:@std/expect@^1.0.18",
"@std/testing": "jsr:@std/testing@^1.0.17"
},
"publish": {
"include": [
"LICENSE",
"README.md",
"deno.json",
"src/**/*.ts"
]
},
"exclude": [
"./coverage",
"./dist/browser",
"./dist/esm",
"./npm"
],
"lock": false
}