@logtape/cloudwatch-logs
Version:
AWS CloudWatch Logs sink for LogTape
37 lines (36 loc) • 788 B
JSON
{
"name": "@logtape/cloudwatch-logs",
"version": "1.0.4",
"license": "MIT",
"exports": "./mod.ts",
"exclude": [
"./dist/"
],
"imports": {
"@aws-sdk/client-cloudwatch-logs": "npm:@aws-sdk/client-cloudwatch-logs@^3.0.0",
"@dotenvx/dotenvx": "npm:@dotenvx/dotenvx@^1.44.2"
},
"tasks": {
"build": "pnpm build",
"test": "deno test --allow-read --allow-net --allow-sys --allow-env",
"test:node": {
"dependencies": [
"build"
],
"command": "node --experimental-transform-types --test"
},
"test:bun": {
"dependencies": [
"build"
],
"command": "bun test --timeout=10000"
},
"test-all": {
"dependencies": [
"test",
"test:node",
"test:bun"
]
}
}
}