-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
28 lines (28 loc) · 962 Bytes
/
deno.jsonc
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
{
"name": "@trackerforce/skimming",
"version": "1.2.2",
"description": "Tag, Customize and Search with Skimming for Deno",
"tasks": {
"fmt": "deno fmt mod.ts src/ --options-single-quote --options-line-width=120 --check",
"fmt:fix": "deno fmt mod.ts test/ src/ example/ --options-single-quote --options-line-width=120",
"test": "deno test --allow-read --allow-net --coverage=coverage",
"lcov": "deno coverage coverage --lcov --output=coverage/report.lcov",
"cover": "deno task clean && deno task test && deno task lcov && genhtml -o coverage/html coverage/report.lcov",
"clean": "rm -rf ./npm ./coverage",
"cache-reload": "deno cache --reload --lock=deno.lock mod.ts test/deps.ts",
"play": "deno run -A test/playground/index.ts"
},
"exports": "./mod.ts",
"fmt": {
"exclude": [
"README.md",
"test/fixtures/**/*"
]
},
"lock": false,
"test": {
"include": [
"test/**/*.ts"
]
}
}