{
  "name": "express-http-problem-details",
  "version": "0.2.1",
  "description": "HTTP problem details (RFC 7807) content negotiation for express",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "directories": {
    "test": "test"
  },
  "files": [
    "dist/**/*.js",
    "dist/**/*.js.map",
    "dist/**/*.d.ts"
  ],
  "scripts": {
    "build": "rm -rf ./dist && ./node_modules/.bin/tsc --project tsconfig-build.json",
    "lint-ts": "./node_modules/.bin/eslint --ext .ts .",
    "test": "./node_modules/mocha/bin/mocha -r ts-node/register test/*.ts",
    "test-ci": "./node_modules/mocha/bin/mocha -r ts-node/register test/*.ts  --reporter mocha-junit-reporter",
    "release": "standard-version"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PDMLab/express-http-problem-details.git"
  },
  "keywords": [
    "express",
    "error",
    "http",
    "problem",
    "rfc7807",
    "conneg"
  ],
  "author": "Alexander Zeitler <alexander.zeitler@pdmlab.com>",
  "contributors": [
    {
      "name": "Tomasz Pluskiewicz",
      "url": "https://t-code.pl/"
    }
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/PDMLab/express-http-problem-details/issues"
  },
  "homepage": "https://github.com/PDMLab/express-http-problem-details#readme",
  "peerDependencies": {
    "express": "^4.16.4"
  },
  "devDependencies": {
    "@commitlint/cli": "^8.2.0",
    "@commitlint/config-conventional": "^8.2.0",
    "@types/express": "^4.17.3",
    "@types/mocha": "^7.0.2",
    "@types/node": "^10.17.17",
    "@typescript-eslint/eslint-plugin": "^2.23.0",
    "@typescript-eslint/parser": "^2.23.0",
    "eslint": "^6.8.0",
    "eslint-config-standard-with-typescript": "^14.0.0",
    "eslint-plugin-import": "^2.17.2",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-promise": "^4.1.1",
    "eslint-plugin-standard": "^4.0.0",
    "husky": "^4.2.3",
    "mocha": "7.1.0",
    "mocha-junit-reporter": "^1.23.3",
    "should": "^13.2.3",
    "standard-version": "^7.0.0",
    "ts-node": "^8.6.2",
    "typescript": "^3.4.4"
  },
  "dependencies": {
    "http-problem-details": "^0.1.2",
    "http-problem-details-mapper": "^0.1.4"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  }
}
