-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeno.jsonc
19 lines (19 loc) · 1.03 KB
/
deno.jsonc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "@switcherapi/switcher-management-feature",
"version": "1.1.0",
"description": "Feature Flag Service for Switcher Management",
"tasks": {
"run": "deno run --allow-net --allow-env --allow-read --allow-write 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 test/ src/ --options-single-quote --options-line-width=120",
"test": "deno test --allow-read --allow-net --allow-env --allow-write --allow-import --coverage=coverage",
"lcov": "deno coverage --exclude=external --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": true,
"exports": "./src/index.ts"
}