-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdeno.jsonc
More file actions
30 lines (30 loc) · 970 Bytes
/
deno.jsonc
File metadata and controls
30 lines (30 loc) · 970 Bytes
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
{
"tasks": {
"clean": "deno run -A tasks.ts clean",
"format": "deno run -A tasks.ts format",
"start": "deno run -A tasks.ts start",
"test": "deno run -A tasks.ts test",
"report": "deno run -A tasks.ts report",
"build": "deno run -A tasks.ts build",
"publish": "deno run -A tasks.ts publish"
},
"imports": {
// --------------------------------------------------------------
// Tasksmith
// --------------------------------------------------------------
"tasksmith": "https://raw.githubusercontent.com/sinclairzx81/tasksmith/0.8.5/src/index.ts",
"test": "./test/common/index.ts",
// --------------------------------------------------------------
// ParseBox
// --------------------------------------------------------------
"@sinclair/parsebox": "./src/index.ts"
},
"fmt": {
"lineWidth": 240,
"semiColons": false,
"singleQuote": true
},
"compilerOptions": {
"strict": true
}
}