-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
43 lines (43 loc) · 1 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": "@krutoo/fetch-tools",
"version": "0.0.0",
"tasks": {
"lint": "deno check src/**/*.ts && deno lint && deno fmt --check",
"test": "deno test --allow-net",
"build-npm": "deno run -A scripts/build-npm.ts"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.3",
"@std/expect": "jsr:@std/expect@^1.0.9",
"@std/testing": "jsr:@std/testing@^1.0.6",
"#fetch": "./src/fetch/mod.ts",
"#response": "./src/response/mod.ts"
},
"exports": {
".": "./src/mod.ts",
"./middleware": "./src/middleware/mod.ts",
"./response": "./src/response/mod.ts",
"./server": "./src/server/mod.ts",
"./url": "./src/url/mod.ts"
},
"fmt": {
"lineWidth": 100,
"indentWidth": 2,
"semiColons": true,
"singleQuote": true,
"exclude": ["npm/**/*"]
},
"lint": {
"exclude": ["npm/**/*"]
},
"publish": {
"include": [
"deno.json",
"deno.lock",
"LICENSE",
"README.md",
"src/**/*.ts"
],
"exclude": ["src/**/*.test.ts"]
}
}