-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeno.jsonc
37 lines (37 loc) · 1.18 KB
/
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
29
30
31
32
33
34
35
36
37
{
"name": "@switcherapi/switcher-client-deno",
"version": "2.1.0",
"description": "Switcher4Deno is a Feature Flag Deno Client SDK for Switcher API",
"tasks": {
"cache-reload": "deno cache --reload --lock=deno.lock mod.ts",
"fmt": "deno fmt mod.ts src/ --options-single-quote --options-line-width=120 --check",
"fmt:fix": "deno fmt mod.ts src/ --options-single-quote --options-line-width=120",
"test": "deno test --allow-read --allow-net --allow-write --allow-import --coverage=coverage",
"test-v1": "deno test --allow-read --allow-net --allow-write --coverage=coverage",
"lcov": "deno coverage coverage --lcov --output=coverage/report.lcov",
"clean": "rm -rf ./npm ./coverage ./generated-snapshots",
"cover": "deno task clean && deno task test && deno task lcov && genhtml -o coverage/html coverage/report.lcov",
"play": "deno run -A tests/playground/index.ts"
},
"exports": "./mod.ts",
"publish": {
"exclude": [
".github",
".vscode",
"tests",
"sonar-project.properties",
".snyk"
]
},
"fmt": {
"exclude": [
"README.md"
]
},
"lock": false,
"test": {
"include": [
"tests/**/*.ts"
]
}
}