-
Notifications
You must be signed in to change notification settings - Fork 1
/
deno.json
52 lines (52 loc) · 1.32 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
{
"tasks": {
"install": "deno install",
"build": "deno run -A --node-modules-dir ./build.config.ts",
"build:watch": "deno run -A --node-modules-dir ./build.config.ts --watch",
"build:dev": "deno run -A --node-modules-dir ./build.config.ts --develope",
"build:dev:watch": "deno run -A --node-modules-dir ./build.config.ts --develope --watch",
"lint": "deno lint",
"test": "deno test -A --unstable --check --reload --doc --allow-none --junit-path=\"./report.xml\""
},
"exclude": [
"./dist/"
],
"test": {
"include": [
"**/*.test.ts"
]
},
"fmt": {
"singleQuote": true,
"lineWidth": 120
},
"lint": {
"rules": {
"tags": [
"recommended"
],
"include": [
"camelcase",
"default-param-last",
"eqeqeq",
"explicit-function-return-type",
"explicit-module-boundary-types",
"guard-for-in",
"no-eval",
"no-sparse-arrays",
"prefer-ascii"
],
"exclude": [
"no-inferrable-types"
]
}
},
"imports": {
"fs/promises": "node:fs/promises",
"path": "node:path",
"@actions/core": "npm:@actions/core",
"@actions/github": "npm:@actions/github",
"@actions/artifact": "npm:@actions/artifact",
"@actions/tool-cache": "npm:@actions/tool-cache"
}
}