-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
53 lines (53 loc) · 1.23 KB
/
deno.json
File metadata and controls
53 lines (53 loc) · 1.23 KB
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
{
"imports": {
"@deno/dnt": "jsr:@deno/dnt@^0.42.1",
"@std/assert": "jsr:@std/assert@^1.0.13",
"@std/cli": "jsr:@std/cli@^1.0.17"
},
"lock": false,
"compilerOptions": {
"experimentalDecorators": true
},
"fmt": {
"include": ["./"],
"exclude": ["./dist"]
},
"test": {
"include": ["./"],
"exclude": ["./dist"]
},
"lint": {
"include": ["./"],
"exclude": ["./dist"]
},
"typeCheck": {
"include": ["./"],
"exclude": ["./dist"]
},
"tasks": {
"build": {
"description": "Build the project for npm, pass in your flags to override the defaults",
"command": "./_build_npm.ts -v v0.0.0-test -e ./mod.ts -o ./dist"
},
"lint": {
"description": "Run linting",
"command": "deno lint"
},
"fmt": {
"description": "Run formatting",
"command": "deno fmt"
},
"test": {
"description": "Run tests",
"command": "deno test --doc"
},
"test:coverage": {
"description": "Run tests with coverage",
"command": "deno test --coverage=coverage --doc"
},
"test:coverage:report": {
"description": "Generate coverage report",
"command": "deno coverage --lcov coverage > coverage/lcov.info"
}
}
}