{
  "name": "swagger-jsdoc",
  "description": "Generates swagger doc based on JSDoc",
  "version": "7.0.0-rc.2",
  "engines": {
    "node": ">=12.0.0"
  },
  "scripts": {
    "start": "node examples/app/app.js",
    "lint": "eslint .",
    "test:lint": "eslint .",
    "test:js": "NODE_OPTIONS=--experimental-vm-modules jest --no-cache",
    "test": "run-p test:* -cn"
  },
  "type": "module",
  "exports": "./index.js",
  "jest": {
    "transform": {}
  },
  "dependencies": {
    "doctrine": "3.0.0",
    "glob": "7.1.6",
    "swagger-parser": "10.0.2",
    "yaml": "2.0.0-1"
  },
  "devDependencies": {
    "body-parser": "1.19.0",
    "eslint": "7.19.0",
    "eslint-config-prettier": "7.2.0",
    "eslint-loader": "4.0.2",
    "eslint-plugin-import": "2.22.1",
    "eslint-plugin-jest": "24.1.3",
    "eslint-plugin-prettier": "3.3.1",
    "express": "4.17.1",
    "husky": "4.3.8",
    "jest": "26.6.3",
    "lint-staged": "10.5.4",
    "npm-run-all": "4.1.5",
    "prettier": "2.2.1",
    "supertest": "6.1.3"
  },
  "license": "MIT",
  "homepage": "https://github.com/Surnet/swagger-jsdoc",
  "repository": {
    "type": "git",
    "url": "https://github.com/Surnet/swagger-jsdoc.git"
  },
  "keywords": [
    "swagger",
    "openapi",
    "jsdoc"
  ],
  "author": "https://github.com/Surnet/swagger-jsdoc/graphs/contributors",
  "bugs": {
    "url": "https://github.com/Surnet/swagger-jsdoc/issues"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,json,md,yml,yaml}": [
      "prettier --write"
    ]
  }
}
