UNPKG

gelfy

Version:

GELF (Graylog Extended Log Format) Integrations for Node.js Logging Libraries

104 lines (103 loc) 2.33 kB
{ "name": "gelfy", "version": "3.0.0", "description": "GELF (Graylog Extended Log Format) Integrations for Node.js Logging Libraries", "main": "build/index.js", "scripts": { "test": "nyc mocha --require @babel/register 'test/**/*.spec.js'", "test:coverall": "npm test | coveralls", "lint": "eslint .", "build": "concurrently \"npm run lint\" \"npm run test:coverall\" && babel ./src --out-dir ./build" }, "repository": { "type": "git", "url": "git+https://github.com/deepal/node-gelfy.git" }, "engines": { "node": ">=10" }, "keywords": [ "node.js", "bunyan", "graylog", "gelf", "logging" ], "babel": { "presets": [ [ "@babel/preset-env", { "targets": { "node": "current" }, "modules": "commonjs", "useBuiltIns": false, "debug": true } ] ], "env": { "test": { "plugins": [ "istanbul" ] } }, "sourceMaps": true, "retainLines": true, "plugins": [] }, "nyc": { "extension": [ ".js" ], "include": "src/**/*.js", "require": [ "@babel/register", "source-map-support/register" ], "reporter": [ "text-lcov", "lcov", "text-summary" ], "sourceMap": true, "all": true, "cache": false }, "author": "Deepal Jayasekara <dpjayasekara@gmail.com>", "license": "ISC", "bugs": { "url": "https://github.com/deepal/node-gelfy/issues" }, "homepage": "https://github.com/deepal/node-gelfy#readme", "dependencies": { "chai": "4.2.0", "fast-safe-stringify": "2.0.6", "gelf-pro": "1.3.5" }, "pre-commit": [ "build" ], "devDependencies": { "@babel/cli": "7.13.16", "@babel/core": "7.14.0", "@babel/preset-env": "7.14.1", "@babel/register": "7.13.16", "babel-plugin-istanbul": "6.0.0", "concurrently": "6.1.0", "coveralls": "3.1.0", "eslint": "7.26.0", "eslint-config-airbnb": "18.2.1", "eslint-plugin-import": "2.22.1", "eslint-plugin-jsx-a11y": "6.4.1", "eslint-plugin-react": "7.23.2", "mocha": "8.4.0", "nyc": "15.1.0", "pre-commit": "1.2.2", "proxyquire": "2.1.3", "sinon": "10.0.0", "source-map-support": "0.5.19" } }