-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
20 lines (20 loc) · 1.09 KB
/
Copy pathdeno.jsonc
File metadata and controls
20 lines (20 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "@switcherapi/switcher-searchdocs",
"version": "1.0.2",
"description": "A remote document search engine that uses Skimming for Deno",
"tasks": {
"run": "deno run --allow-net --allow-env --allow-read src/index.ts",
"run:prod": "ENV_PATH=.env.prod deno task run",
"cache-reload": "deno cache --reload --lock=deno.lock src/index.ts",
"fmt": "deno fmt src/ --options-single-quote --options-line-width=120 --check",
"fmt:fix": "deno fmt tests/ src/ --options-single-quote --options-line-width=120",
"fmt:files": "deno fmt --options-single-quote --options-line-width=120 -- --files",
"test": "deno test --allow-read --allow-net --allow-env --allow-import --coverage=coverage",
"lcov": "deno coverage coverage --lcov --output=coverage/report.lcov",
"clean": "rm -rf ./npm ./coverage",
"cover": "deno task clean && deno task test && deno task lcov && genhtml -o coverage/html coverage/report.lcov",
"cover:html": "deno task clean && deno task test && deno task lcov && deno coverage --exclude=external --html"
},
"lock": false,
"exports": "./src/index.ts"
}