UNPKG

logdna-winston

Version:

LogDNA's Node.js logging module with support for Winston

98 lines (97 loc) 1.95 kB
{ "name": "logdna-winston", "version": "4.0.1", "description": "LogDNA's Node.js logging module with support for Winston", "main": "index.js", "files": [ "index.js", "README.md", "LICENSE" ], "scripts": { "lint": "eslint .", "test": "tools/test.sh", "release": "semantic-release" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/logdna/logdna-winston.git" }, "keywords": [ "logdna", "logs", "logging", "winston", "logdna.com", "logger", "node", "nodejs" ], "author": { "name": "LogDNA Inc.", "email": "help@logdna.com" }, "license": "SEE LICENSE IN LICENSE", "bugs": { "url": "https://github.com/logdna/logdna-winston/issues" }, "homepage": "https://github.com/logdna/logdna-winston#readme", "dependencies": { "@logdna/logger": "^2.4.0", "winston-transport": "^4.4.0" }, "devDependencies": { "eslint": "^7.32.0", "eslint-config-logdna": "^5.1.0", "nock": "^13.0.4", "semantic-release": "^17.4.7", "semantic-release-config-logdna": "^1.3.0", "tap": "^14.10.8", "tap-xunit": "^2.4.1", "winston": "^3.3.3" }, "eslintConfig": { "extends": [ "logdna" ], "root": true, "ignorePatterns": [ "node_modules/", "coverage/" ], "parserOptions": { "ecmaVersion": 2019 } }, "tap": { "100": true, "esm": false, "ts": false, "jsx": false, "check-coverage": true, "browser": false, "coverage-report": [ "text", "text-summary", "json-summary", "json", "html" ], "reporter": "tap", "nyc-arg": [ "--exclude=test/", "--exclude=tools", "--all" ], "files": [ "test/**/*.js" ], "output-file": "coverage/.tap-output" }, "release": { "branches": [ "main" ], "extends": "semantic-release-config-logdna" } }