{
  "name": "@kazaar/express-error-handler",
  "version": "3.2.2",
  "description": "Express error handling and logging utilities",
  "main": "index.js",
  "repository": "arthurfauq/express-error-handler",
  "homepage": "https://github.com/arthurfauq/express-error-handler",
  "author": {
    "name": "Arthur Fauquenot",
    "email": "arthurfauquenot@gmail.com",
    "url": "https://github.com/arthurfauq"
  },
  "license": "MIT",
  "files": [
    "src",
    "index.js",
    "index.d.ts"
  ],
  "types": "index.d.ts",
  "keywords": [
    "nodejs",
    "express",
    "middleware",
    "http-errors",
    "errors",
    "rest"
  ],
  "scripts": {
    "lint": "eslint \"**/*.js\" && prettier --check --ignore-unknown .",
    "lint:fix": "eslint \"**/*.js\" --fix && prettier --write --ignore-unknown ."
  },
  "dependencies": {
    "http-errors": "^1.8.0"
  },
  "devDependencies": {
    "eslint": "^7.25.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "eslint-plugin-promise": "^5.1.0",
    "husky": "^6.0.0",
    "lint-staged": "^10.5.4",
    "prettier": "^2.2.1"
  },
  "peerDependencies": {
    "celebrate": "10.x",
    "express": ">= 4.x",
    "express-jwt": "6.x",
    "sequelize": ">= 4.x"
  },
  "peerDependenciesMeta": {
    "celebrate": {
      "optional": true
    },
    "express-jwt": {
      "optional": true
    },
    "sequelize": {
      "optional": true
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ],
    "*.{json,md,html,yaml}": [
      "prettier --write",
      "git add"
    ]
  },
  "engines": {
    "node": ">=12"
  }
}
