-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
31 lines (31 loc) · 860 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
{
"name": "@myty/jimmy",
"description": "This is a simple library for using the mediator pattern in your typescript and deno projects. While not entirely a true port, the MediatR library for .NET is a direct influence.",
"exports": "./mod.ts",
"tasks": {
"clear-cache": "deno run --unstable --allow-net ./scripts/clear-readme-cache.ts"
},
"compilerOptions": {
"allowJs": false,
"strict": true
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": ["ban-untagged-todo"],
"exclude": ["no-unused-vars"]
}
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"singleQuote": false,
"proseWrap": "preserve"
},
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.2",
"@std/assert": "jsr:@std/assert@^0.224.0",
"@std/testing": "jsr:@std/testing@^0.224.0"
}
}