-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
57 lines (57 loc) · 1.59 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
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@sequoia/sequoia",
"version": "0.6.6",
"exports": {
".": "./mod.ts",
"./error": "./error.ts"
},
"tasks": {
"lint:fmt": "deno lint --fix && deno fmt",
"test": "deno test --allow-net --allow-read=test --parallel test",
"check": "deno lint && deno fmt --check"
},
"lint": {
"rules": {
"tags": ["recommended"],
"include": [
"ban-unused-ignore",
"eqeqeq",
"camelcase",
"no-class-assign",
"no-compare-neg-zero",
"no-cond-assign",
"no-constant-condition",
"no-delete-var",
"no-deprecated-deno-api",
"no-dupe-else-if",
"no-empty",
"no-eval",
"no-ex-assign",
"no-extra-boolean-cast",
"no-external-imports"
]
}
},
"fmt": {
"exclude": [
"examples",
"LICENSE",
"README-ru.md",
"README.md"
],
"semiColons": false,
"singleQuote": true,
"useTabs": false,
"indentWidth": 4,
"lineWidth": 100,
"proseWrap": "always"
},
"imports": {
"@std/assert": "jsr:@std/assert@^0.223.0",
"@std/cli": "jsr:@std/cli@^0.223.0",
"@std/http": "jsr:@std/http@^0.223.0",
"@std/media-types": "jsr:@std/media-types@^0.223.0",
"@std/path": "jsr:@std/path@^0.223.0",
"path-to-regexp": "npm:path-to-regexp@^6.2.1"
}
}