{
  "name": "swagger-jsdoc",
  "version": "3.7.0",
  "engines": {
    "node": ">=8.0.0"
  },
  "license": "MIT",
  "description": "Generates swagger doc based on JSDoc",
  "homepage": "https://github.com/Surnet/swagger-jsdoc",
  "repository": {
    "type": "git",
    "url": "https://github.com/Surnet/swagger-jsdoc.git"
  },
  "keywords": [
    "jsdoc",
    "restful",
    "api",
    "express",
    "swagger"
  ],
  "author": "https://github.com/Surnet/swagger-jsdoc/graphs/contributors",
  "bugs": {
    "url": "https://github.com/Surnet/swagger-jsdoc/issues"
  },
  "main": "index.js",
  "scripts": {
    "test:lint": "eslint .",
    "test:js": "mocha --timeout 10000 --exit",
    "start": "node example/v2/app.js",
    "test": "run-p test:* -cn"
  },
  "bin": {
    "swagger-jsdoc": "./bin/swagger-jsdoc.js"
  },
  "dependencies": {
    "commander": "4.0.1",
    "doctrine": "3.0.0",
    "glob": "7.1.6",
    "js-yaml": "3.13.1",
    "swagger-parser": "8.0.4"
  },
  "devDependencies": {
    "body-parser": "1.19.0",
    "chai": "4.2.0",
    "chai-jest-snapshot": "2.0.0",
    "eslint": "6.8.0",
    "eslint-config-airbnb-base": "14.1.0",
    "eslint-config-prettier": "6.10.1",
    "eslint-loader": "3.0.3",
    "eslint-plugin-import": "2.20.1",
    "eslint-plugin-prettier": "3.1.2",
    "express": "4.17.1",
    "husky": "3.1.0",
    "lint-staged": "9.5.0",
    "mocha": "7.1.1",
    "npm-run-all": "4.1.5",
    "prettier": "1.19.1",
    "supertest": "4.0.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,md,yml,yaml}": [
      "prettier --write"
    ]
  }
}
