-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
33 lines (33 loc) · 1.54 KB
/
deno.jsonc
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
{
"tasks": {
"setup": "/bin/bash tasks.sh setup",
"start": "/bin/bash tasks.sh start",
"pm2": "/bin/bash tasks.sh pm2",
"check": "rm -rf ./cov_profile/ && deno test --coverage=cov_profile && deno coverage cov_profile --html"
},
"fmt": {
"indentWidth": 4,
"lineWidth": 120,
"semiColons": true,
"singleQuote": true,
"useTabs": false,
"exclude": ["./cov_profile/"]
},
"imports": {
"std/assert/assertion_error": "https://deno.land/[email protected]/assert/assertion_error.ts",
"std/assert/assert_equals": "https://deno.land/[email protected]/assert/assert_equals.ts",
"std/assert/assert_rejects": "https://deno.land/[email protected]/assert/assert_rejects.ts",
"std/assert_throws": "https://deno.land/[email protected]/assert/assert_throws.ts",
"std/encoding/base64": "https://deno.land/[email protected]/encoding/base64.ts",
"std/path": "https://deno.land/[email protected]/path/mod.ts",
"std/testing/mock": "https://deno.land/[email protected]/testing/mock.ts",
"std/uuid": "https://deno.land/[email protected]/uuid/mod.ts",
"x/sqlite": "https://deno.land/x/[email protected]/mod.ts",
"hono": "https://deno.land/x/[email protected]/mod.ts",
"hono/middleware": "https://deno.land/x/[email protected]/middleware.ts",
"hono/utils/http-status": "https://deno.land/x/[email protected]/utils/http-status.ts",
"ip-range-check": "npm:[email protected]",
"mongo": "https://deno.land/x/[email protected]/mod.ts",
"yaml": "npm:[email protected]"
}
}