-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathdeno.jsonc
More file actions
38 lines (38 loc) · 855 Bytes
/
deno.jsonc
File metadata and controls
38 lines (38 loc) · 855 Bytes
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
{
"$schema": "https://raw.githubusercontent.com/denoland/deno/main/cli/schemas/config-file.v1.json",
"fmt": {
"include": [
"README.md",
"datastores",
"external_auth",
"functions",
"manifest.ts",
"triggers",
"types",
"views",
"workflows"
]
},
"lint": {
"include": [
"datastores",
"external_auth",
"functions",
"manifest.ts",
"triggers",
"types",
"views",
"workflows"
]
},
"lock": false,
"tasks": {
"test": "deno fmt --check && deno lint && deno test --allow-read"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.15",
"@std/testing": "jsr:@std/testing@^1.0.16",
"deno-slack-sdk/": "https://deno.land/x/deno_slack_sdk@2.15.1/",
"deno-slack-api/": "https://deno.land/x/deno_slack_api@2.8.0/"
}
}