UNPKG

winston-firehose

Version:

Winston logging transport for logging into Amazon AWS Firehose.

57 lines (56 loc) 1.36 kB
{ "name": "winston-firehose", "version": "4.0.0-next.0", "description": "Winston logging transport for logging into Amazon AWS Firehose.", "main": "dist/index.js", "types": "dist/index.d.ts", "engines": { "node": ">=18.0.0" }, "scripts": { "clean": "npx rimraf dist/", "lint": "npx eslint .", "test": "npx jest", "build": "tsc", "prepublish": "npm run build" }, "repository": { "type": "git", "url": "git+https://github.com/pkallos/winston-firehose.git" }, "keywords": [ "winston", "firehose" ], "author": "Phil Kallos", "license": "ISC", "bugs": { "url": "https://github.com/pkallos/winston-firehose/issues" }, "homepage": "https://github.com/pkallos/winston-firehose#readme", "dependencies": { "@aws-sdk/client-firehose": "^3.316.0", "triple-beam": "^1.3.0", "winston-transport": "^4.5.0" }, "devDependencies": { "@types/jest": "^29.5.1", "@types/node": "^18.15.11", "@typescript-eslint/eslint-plugin": "^5.59.0", "@typescript-eslint/parser": "^5.59.0", "eslint": "^8.38.0", "jest": "^29.5.0", "rimraf": "^5.0.0", "ts-jest": "^29.1.0", "ts-node": "^10.9.1", "tsx": "^3.12.6", "typescript": "^5.0.4", "winston": "^3.8.2" }, "peerDependencies": { "winston": "^3.8.2" }, "files": [ "/dist" ] }