-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdeno.json
54 lines (54 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "@danet/swagger",
"version": "2.3.1",
"exports": {
".":"./mod.ts",
"./decorators": "./decorators.ts"
},
"lint": {
"exclude": [
"spec"
],
"rules": {
"tags": [
"recommended"
],
"include": [
"ban-untagged-todo"
],
"exclude": [
"no-unused-vars",
"no-explicit-any",
"no-namespace",
"ban-types"
]
}
},
"fmt": {
"options": {
"singleQuote": true,
"useTabs": true
},
"exclude": [
"*.md"
]
},
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true
},
"tasks": {
"test": "deno test --unstable spec --allow-env --allow-read --allow-net",
"test:watch": "NO_LOG=true deno test --watch --allow-env --allow-net --unstable -A spec"
},
"imports": {
"deno_reflect": "jsr:@dx/[email protected]",
"path_to_regexp": "npm:[email protected]",
"@std/path": "jsr:@std/[email protected]",
"@std/assert": "jsr:@std/[email protected]",
"@danet/core": "jsr:@danet/core@2",
"@danet/zod": "jsr:@danet/[email protected]",
"zod": "npm:[email protected]",
"zod-openapi": "npm:@anatine/[email protected]"
}
}