-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeno.jsonc
More file actions
31 lines (31 loc) · 1017 Bytes
/
Copy pathdeno.jsonc
File metadata and controls
31 lines (31 loc) · 1017 Bytes
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
{
"version": "0.6.3",
"name": "@esroyo/bottlexs",
"exports": "./mod.ts",
"tasks": {
"coverage": "rm -rf coverage && deno task test --reporter=dot --coverage=coverage && deno coverage --lcov --output=coverage.lcov coverage && genhtml -o coverage/report coverage.lcov",
"fmt": "deno fmt src/ mod.ts dev_deps.ts example.ts",
"build": "npx esbuild --minify --bundle --format=esm --target=esnext --mangle-props=^_ --sourcemap --outfile=dist/bottle.min.js mod.ts",
"release:dry-run": "npx commit-and-tag-version --dry-run && deno publish --dry-run --allow-dirty",
"release": "npx commit-and-tag-version && git push --follow-tags origin main && deno publish",
"test": "deno test --allow-hrtime"
},
"fmt": {
"indentWidth": 4,
"singleQuote": true
},
"compilerOptions": {
"experimentalDecorators": false
},
"publish": {
"include": [
"mod.ts",
"src/",
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md",
"deno.jsonc"
]
}
}