{
  "name": "winston-aws-cloudwatch",
  "version": "3.0.0",
  "description": "A Winston transport for Amazon CloudWatch.",
  "keywords": [
    "amazon",
    "aws",
    "cloudwatch",
    "winston",
    "log",
    "logs",
    "logging",
    "cloud",
    "saas"
  ],
  "author": "Tim De Pauw <hi@tmdpw.eu> (https://tmdpw.eu/)",
  "engines": {
    "node": ">=8",
    "yarn": ">=1.6.0"
  },
  "peerDependencies": {
    "winston": "^3.0.0"
  },
  "dependencies": {
    "aws-sdk": "^2.293.0",
    "bottleneck": "^1.16.0",
    "debug": "^3.1.0",
    "lodash.isempty": "^4.2.1",
    "winston-transport": "^4.2.0"
  },
  "devDependencies": {
    "chai": "^4.0.2",
    "chai-as-promised": "^7.0.0",
    "coveralls": "^3.0.2",
    "delay": "^3.0.0",
    "husky": "^0.14.3",
    "lint-staged": "^7.2.2",
    "mocha": "^5.2.0",
    "mocha-junit-reporter": "^1.18.0",
    "nyc": "^12.0.2",
    "prettier-standard": "^8.0.1",
    "rimraf": "^2.6.1",
    "sinon": "^6.1.5",
    "sinon-chai": "^3.2.0",
    "standard": "^10.0.0"
  },
  "main": "lib/index.js",
  "files": [
    "lib/"
  ],
  "scripts": {
    "test": "yarn run test:lint && yarn run test:cover",
    "test:lint": "standard '{lib,test}/**/*.js'",
    "test:unit": "mocha 'test/lib/setup.js' 'test/**/*.spec.js'",
    "test:cover": "nyc yarn run test:unit",
    "test:ci": "yarn run test:lint && yarn run test:ci:cover && yarn run test:ci:report",
    "test:ci:cover": "nyc mocha --reporter mocha-junit-reporter 'test/lib/setup.js' 'test/**/*.spec.js'",
    "test:ci:report": "nyc report --reporter text-lcov | coveralls",
    "format": "prettier-standard '{lib,test}/**/*.js'",
    "precommit": "lint-staged"
  },
  "repository": "timdp/winston-aws-cloudwatch",
  "bugs": "https://github.com/timdp/winston-aws-cloudwatch/issues",
  "license": "MIT",
  "standard": {
    "globals": [
      "describe",
      "it",
      "expect",
      "before",
      "after",
      "beforeEach",
      "afterEach",
      "sinon"
    ]
  },
  "lint-staged": {
    "*.js": [
      "prettier-standard",
      "git add"
    ]
  }
}
