-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
37 lines (37 loc) · 865 Bytes
/
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
{
"name": "@bedna/czech-covid-data-api-lib",
"version": "1.4.1",
"exports": "./src/index.ts",
"license": "MIT",
"tasks": {
"dev": "deno run --watch index.ts",
"run-tests": "deno test --allow-read --allow-env --allow-net"
},
"publish": {
"include": ["src/", "deno.json", "deno.lock", "README.md"]
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/dotenv": "jsr:@std/dotenv@^0.225.2",
"@std/expect": "jsr:@std/expect@^1.0.5",
"@std/testing": "jsr:@std/testing@^1.0.3"
},
"lint": {
"include": ["src/"],
"exclude": ["test/"],
"rules": {
"tags": ["recommended"],
"exclude": ["no-explicit-any"]
}
},
"fmt": {
"lineWidth": 80,
"useTabs": false,
"semiColons": true,
"singleQuote": false,
"indentWidth": 2
},
"compilerOptions": {
"strict": true
}
}