{
  "name": "exegesis-express",
  "version": "2.0.1",
  "description": "Express middleware to handle OpenAPI 3.x.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist/**/*"
  ],
  "scripts": {
    "test": "npm run build && npm run lint && npm run test:unittest",
    "precommit:test": "npm run build && lint-staged && npm run precommit:unittest",
    "build": "tsc",
    "clean": "rm -rf dist coverage",
    "test:unittest": "tsc -p test && nyc mocha 'test/**/*.@(ts|js)'",
    "precommit:unittest": "tsc -p test && mocha --reporter progress 'test/**/*.@(ts|js)'",
    "lint": "npm run lint:source && npm run lint:tests",
    "lint:source": "tslint -c tslint.json -t stylish 'src/**/*.ts'",
    "lint:tests": "tslint -c test/tslint.json -t stylish 'test/**/*.ts'",
    "prepare": "husky install && npm run build",
    "prepublishOnly": "npm run build && npm test",
    "semantic-release": "semantic-release"
  },
  "lint-staged": {
    "src/**/*.ts": [
      "tslint -c tslint.json -t stylish"
    ],
    "test/**/*.ts": [
      "tslint -c test/tslint.json -t stylish"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/exegesis-js/exegesis-express.git"
  },
  "keywords": [
    "express",
    "OpenAPI",
    "oas3",
    "exegesis"
  ],
  "author": {
    "name": "Jason Walton",
    "email": "dev@lucid.thedreaming.org",
    "url": "https://github.com/jwalton/"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/exegesis-js/exegesis-express/issues"
  },
  "homepage": "https://github.com/exegesis-js/exegesis-express#readme",
  "dependencies": {
    "exegesis": "^2.5.7"
  },
  "devDependencies": {
    "@jwalton/semantic-release-config": "^1.0.0",
    "@types/chai": "^4.1.7",
    "@types/express": "^4.16.1",
    "@types/mocha": "^8.2.2",
    "@types/node": "^15.0.3",
    "chai": "^4.2.0",
    "chai-as-promised": "^7.1.1",
    "coveralls": "^3.0.3",
    "express": "^4.16.4",
    "husky": "^6.0.0",
    "lint-staged": "^11.0.0",
    "mocha": "^8.4.0",
    "nyc": "^15.0.1",
    "semantic-release": "^17.4.3",
    "supertest-fetch": "^1.2.4",
    "ts-node": "^9.1.1",
    "tslint": "^6.1.3",
    "typescript": "^4.2.4"
  },
  "greenkeeper": {
    "ignore": [
      "@types/node"
    ]
  },
  "engines": {
    "node": ">=6.0.0",
    "npm": ">5.0.0"
  }
}
