{
  "name": "winston-gelf-transporter",
  "version": "1.0.2",
  "description": "A Winston transporter for sending GELF messages",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "prepublish": "npm run clean && npm run build",
    "build": "tsc",
    "test": "npm run build && jest",
    "clean": "rm -rf coverage/* lib/*",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "start": "npm run build && node lib/index.js",
    "prepublishOnly": "npm test && npm run lint",
    "prepare": "npm run build",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bytetechnology/winston-gelf-transporter.git"
  },
  "keywords": [
    "gelf",
    "winston",
    "transport",
    "tcp"
  ],
  "author": "David Sornberger <davids@bytetechnology.co>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/bytetechnology/winston-gelf-transporter/issues"
  },
  "homepage": "https://github.com/bytetechnology/winston-gelf-transporter#readme",
  "devDependencies": {
    "@types/jest": "25.1.4",
    "@types/node": "13.9.1",
    "@typescript-eslint/eslint-plugin": "2.23.0",
    "@typescript-eslint/parser": "2.23.0",
    "eslint": "6.8.0",
    "eslint-config-airbnb-base": "14.1.0",
    "eslint-config-prettier": "6.10.0",
    "eslint-plugin-import": "2.20.1",
    "eslint-plugin-prettier": "3.1.2",
    "jest": "25.1.0",
    "prettier": "1.19.1",
    "ts-jest": "25.2.1",
    "ts-node": "8.6.2",
    "typescript": "3.8.3",
    "winston": "3.2.1"
  },
  "dependencies": {
    "gelf-pro": "1.3.3",
    "logform": "2.1.2",
    "winston-transport": "4.3.0"
  },
  "engines": {
    "node": ">= 8.x.x"
  },
  "jest": {
    "coverageDirectory": "<rootDir>/coverage",
    "testEnvironment": "node",
    "moduleFileExtensions": [
      "js"
    ],
    "testMatch": [
      "<rootDir>/lib/**/*.spec.js"
    ],
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.json"
      }
    }
  }
}
