Files
d-logger/deno.json
2025-09-28 10:11:51 +08:00

30 lines
641 B
JSON

{
"name": "@iankulin/logger",
"version": "1.1.0",
"license": "MIT",
"exports": {
".": "./lib/logger.ts"
},
"publish": {
"include": [
"lib/",
"README.md",
"LICENSE"
]
},
"imports": {
"@std/assert": "https://deno.land/std@0.224.0/assert/mod.ts",
"@std/testing": "https://deno.land/std@0.224.0/testing/mock.ts"
},
"tasks": {
"dev": "deno run --allow-env --allow-sys demo.js",
"test": "deno test --allow-env --allow-sys",
"lint": "deno lint",
"check": "deno check lib/logger.ts"
},
"compilerOptions": {
"lib": ["deno.ns", "deno.window"],
"strict": true
}
}