-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
43 lines (43 loc) · 1.08 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
{
"version": "1.0.4",
"name": "@fcrozatier/type-strip",
"license": "MIT",
"exports": "./index.ts",
"tasks": {
"bump": "deno run --allow-read --allow-write --allow-run bump.ts",
"gen:fixtures": "deno run --allow-write benchmark/fixtures-script.ts",
"bench": "deno bench --allow-read --allow-env --allow-run benchmark/bench.ts ",
"test": "deno test --allow-read",
"coverage": "deno test --allow-read --coverage && deno coverage --include='index.ts' --html && open coverage/html/index.html"
},
"fmt": {
"exclude": [
"**/*.md"
]
},
"lint": {
"exclude": [
"benchmark/kitchen-sink.ts"
]
},
"imports": {
"@std/assert": "jsr:@std/assert@1",
"@std/fs": "jsr:@std/fs@^1.0.7",
"@std/path": "jsr:@std/path@^1.0.8",
"esbuild": "npm:esbuild@^0.24.0",
"ts-blank-space": "npm:ts-blank-space@^0.4.4",
"typescript": "npm:typescript@^5.7.2"
},
"exclude": [
"tests/**/input.ts",
"tests/**/input.tsx",
"tests/**/output.ts"
],
"publish": {
"exclude": [
"tests",
"scripts",
".vscode"
]
}
}