-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
47 lines (47 loc) · 1.18 KB
/
deno.jsonc
File metadata and controls
47 lines (47 loc) · 1.18 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
{
"name": "@dklab/oak-routing-ctrl",
"version": "0.16.1",
"exports": {
".": "./mod.ts",
"./mod": "./mod.ts"
},
"publish": {
"exclude": [
"./test_utils",
"**/*_test.ts",
"./CONTRIBUTING.md",
"./GOVERNANCE.md"
]
},
"tasks": {
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
"test": "deno test -RE -I=jspm.dev,jsr.io,deno.land -N=0.0.0.0,127.0.0.1",
"check-doc": "deno check -I=jspm.dev,jsr.io,deno.land --doc .",
"doc": "deno doc --html mod.ts"
},
"imports": {
"@asteasolutions/zod-to-openapi": "npm:@asteasolutions/zod-to-openapi@^8.1.0",
"@oak/oak": "jsr:@oak/oak@^17.2.0",
"@std/assert": "jsr:@std/assert@^1.0.16",
"@std/io": "jsr:@std/io@^0.225.2",
"@std/path": "jsr:@std/path@^1.1.3",
"@std/testing": "jsr:@std/testing@^1.0.16",
"zod": "npm:zod@^4.1.13",
"superoak": "https://deno.land/x/superoak@4.8.1/mod.ts"
},
"fmt": {
"useTabs": false,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "always"
},
"exclude": [
"./docs",
"cov_profile",
"cov_profile.lcov",
"**/__snapshots__",
".github",
".vscode"
]
}