-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.json
39 lines (39 loc) · 918 Bytes
/
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
{
"compilerOptions": {
"strict": true,
"exactOptionalPropertyTypes": true,
"useUnknownInCatchVariables": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true
},
"name": "@dannyden/github-activity",
"version": "1.1.2",
"license": "MIT",
"tasks": {
"dev": "deno run --watch main.ts",
"start": "deno run main.ts",
"format": "deno fmt",
"lint": "deno lint",
"ship": {
"description": "Description",
"command": "echo 'Done!'",
"dependencies": ["format", "lint"]
}
},
"lint": {
"rules": {
"include": [
"camelcase",
"no-sync-fn-in-async-fn",
"single-var-declarator",
"verbatim-module-syntax"
]
}
},
"exports": "./src/main.ts",
"imports": {
"@std/assert": "jsr:@std/assert@^1.0.8",
"@std/cli": "jsr:@std/cli@^1.0.7",
"@std/testing": "jsr:@std/testing@^1.0.5"
}
}