{
  "name": "@aaronpowell/azure-functions-nodejs-openapi",
  "version": "0.4.0",
  "description": "Support for generating OpenAPI spec files for Azure Functions",
  "main": "./build/index.js",
  "bin": {
    "openapi-func": "./bin/index.js"
  },
  "scripts": {
    "build": "tsc",
    "prebuild": "npm run clean",
    "watch": "tsc -w",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "npm run lint -- --fix",
    "clean": "rimraf dist",
    "start": "cd example/trivia-game && npm start",
    "prestart": "npm run build",
    "prepare": "husky install"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aaronpowell/azure-functions-nodejs-openapi.git"
  },
  "keywords": [
    "azure",
    "openapi",
    "swagger",
    "azure-functions"
  ],
  "author": {
    "email": "me+github@aaron-powell.com",
    "name": "Aaron Powell",
    "url": "https://www.aaron-powell.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/aaronpowell/azure-functions-nodejs-openapi/issues"
  },
  "homepage": "https://github.com/aaronpowell/azure-functions-nodejs-openapi#readme",
  "devDependencies": {
    "@commitlint/cli": "^16.1.0",
    "@commitlint/config-conventional": "^16.0.0",
    "@types/node": "^17.0.1",
    "@typescript-eslint/eslint-plugin": "^5.7.0",
    "@typescript-eslint/parser": "^5.7.0",
    "eslint": "^8.5.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^7.0.4",
    "prettier": "^2.5.1",
    "rimraf": "^3.0.2",
    "typescript": "^4.5.4"
  },
  "dependencies": {
    "@azure/functions": "^3.0.0",
    "chalk": "^4.1.2",
    "commander": "^9.0.0",
    "inquirer": "^8.2.0",
    "openapi-types": "^10.0.0"
  }
}
