-
Notifications
You must be signed in to change notification settings - Fork 2
/
deno.json
53 lines (53 loc) · 1.55 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
{
"tasks": {
"dev": "deno run --watch mod.ts",
"test": "deno test -A src/ && deno test -A --doc src/",
"coverage": "deno test -A --doc --reporter=junit --junit-path=./junit.xml --coverage=./coverage/cov_profile src/",
"doc": "deno run --allow-read --allow-write --allow-env --deny-run npm:typedoc@0.25.3 --tsconfig tsconfig.doc.json --skipErrorChecking --name @mikuroxina/mini-fn mod.ts"
},
"fmt": {
"useTabs": false,
"lineWidth": 80,
"indentWidth": 4,
"semiColons": true,
"singleQuote": false,
"proseWrap": "always",
"exclude": [
".release-please-manifest.json",
"CHANGELOG.md"
]
},
"lint": {
"include": [
"src/"
],
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"guard-for-in",
"no-const-assign",
"no-eval",
"no-external-import",
"no-self-compare",
"no-throw-literal",
"no-top-level-await",
"no-undef",
"prefer-ascii",
"verbatim-module-syntax"
]
}
},
"lock": false,
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.41.1"
},
"name": "@mikuroxina/mini-fn",
"exports": "./mod.ts",
"version": "6.7.0"
}