{
  "name": "webpack-log",
  "version": "3.0.2",
  "description": "A logger for the Webpack ecosystem",
  "license": "MPL-2.0",
  "repository": "shellscape/webpack-log",
  "author": "shellscape",
  "homepage": "https://github.com/shellscape/webpack-log",
  "bugs": "https://github.com/shellscape/webpack-log/issues",
  "main": "lib/index.js",
  "engines": {
    "node": ">= 8.0.0"
  },
  "scripts": {
    "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
    "ci:lint": "npm run lint && npm run security",
    "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
    "ci:test": "npm run test -- --verbose",
    "commitlint": "commitlint",
    "commitmsg": "commitlint -e $GIT_PARAMS",
    "lint": "eslint --fix --cache lib test",
    "lint-staged": "lint-staged",
    "security": "npm audit",
    "test": "ava"
  },
  "files": [
    "lib/",
    "README.md",
    "LICENSE"
  ],
  "dependencies": {
    "chalk": "^2.4.2",
    "loglevelnext": "^3.0.1",
    "nanoid": "^2.0.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.1.0",
    "@commitlint/config-conventional": "^8.0.0",
    "ava": "^2.2.0",
    "cpy": "^7.0.1",
    "eslint-config-shellscape": "^2.1.0",
    "lint-staged": "^9.2.0",
    "nyc": "^14.1.1",
    "pre-commit": "^1.2.2",
    "sinon": "^7.3.2",
    "standard-version": "^7.0.0"
  },
  "keywords": [
    "log",
    "logger",
    "logging",
    "console",
    "terminal",
    "webpack"
  ],
  "ava": {
    "files": [
      "!**/fixtures/**",
      "!**/helpers/**",
      "!**/recipes/**"
    ]
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "nyc": {
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [
      "lib/client*.js",
      "test/"
    ]
  },
  "pre-commit": "lint-staged"
}
