-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
49 lines (48 loc) · 785 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
40
41
42
43
44
45
46
47
48
49
{
"version": "0.0.11",
"name": "@mr/dataloader",
"license": "MIT",
"exports": {
".": "./lib/mod.ts",
"./cache": "./lib/cache.ts"
},
"tasks": {
"build": "deno run -A scripts/build.ts"
},
"imports": {
"@std/assert": "jsr:@std/assert@^1",
"@std/path": "jsr:@std/path@^1",
"object-identity": "jsr:@mr/object-identity@^0.1",
"dldr": "./lib/mod.ts"
},
"lock": false,
"lint": {
"rules": {
"exclude": [
"no-var",
"prefer-const",
"no-cond-assign",
"no-inner-declarations",
"no-explicit-any",
"require-await"
]
}
},
"fmt": {
"lineWidth": 100,
"singleQuote": true,
"useTabs": true
},
"exclude": [
"npm",
"coverage"
],
"publish": {
"include": [
"lib/mod.ts",
"lib/cache.ts",
"license",
"readme.md"
]
}
}