-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdeno.json
45 lines (45 loc) · 1.09 KB
/
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
{
"name": "@irc/client",
"version": "0.17.2",
"exports": "./mod.ts",
"license": "MIT",
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "preserve",
"include": ["core/", "plugins/", "testing/"]
},
"lint": {
"include": ["core", "plugins", "testing"],
"rules": {
"tags": ["recommended"]
}
},
"tasks": {
"lint": "deno lint **/*.ts",
"fmt": "deno fmt **/*.ts",
"test": "deno test --failfast core/*_test.ts plugins/*_test.ts --parallel",
"coverage": "rm -rf coverage && deno test --parallel --coverage=coverage/cov_profile core/*_test.ts plugins/*_test.ts && deno coverage --exclude=\"_test.ts\" --exclude=\"/testing/\""
},
"publish": {
"include": [
"core",
"plugins",
"README.md",
"API.md",
"deno.json",
"deno.lock",
"LICENSE",
"client.ts",
"mod.ts"
]
},
"imports": {
"@henrygd/queue": "jsr:@henrygd/queue@^1.0.6",
"@std/assert": "jsr:@std/assert@^1.0.6",
"@std/fmt": "jsr:@std/fmt@^1.0.2"
}
}