@logtape/adaptor-winston
Version:
winston adapter for LogTape logging library
41 lines (40 loc) • 722 B
JSON
{
"name": "@logtape/adaptor-winston",
"version": "1.0.0",
"license": "MIT",
"exports": {
".": "./mod.ts",
"./install": "./install.ts"
},
"imports": {
"winston": "npm:winston@^3.17.0"
},
"exclude": [
"coverage/",
"npm/",
".dnt-import-map.json"
],
"tasks": {
"build": "pnpm build",
"test": "deno test --allow-env",
"test:node": {
"dependencies": [
"build"
],
"command": "node --experimental-transform-types --test"
},
"test:bun": {
"dependencies": [
"build"
],
"command": "bun test"
},
"test-all": {
"dependencies": [
"test",
"test:node",
"test:bun"
]
}
}
}