{
  "name": "openapi-schemas",
  "version": "1.0.3",
  "description": "JSON Schemas for every version of the OpenAPI Specification",
  "keywords": [
    "openapi",
    "open-api",
    "swagger",
    "oas",
    "api",
    "rest",
    "json",
    "specification",
    "definition",
    "schema"
  ],
  "author": {
    "name": "James Messinger",
    "url": "https://jamesmessinger.com"
  },
  "license": "MIT",
  "homepage": "https://apitools.dev/openapi-schemas",
  "repository": {
    "type": "git",
    "url": "https://github.com/APIDevTools/openapi-schemas.git"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib",
    "schemas"
  ],
  "scripts": {
    "clean": "shx rm -rf .nyc_output coverage lib .tmp schemas",
    "clone": "git clone https://github.com/OAI/OpenAPI-Specification.git .tmp",
    "copy": "shx cp -r .tmp/schemas schemas",
    "lint": "npm run lint:typescript && npm run lint:javascript",
    "lint:typescript": "tslint -p tsconfig.json",
    "lint:javascript": "eslint test",
    "build": "npm run build:schemas && npm run build:typescript",
    "build:schemas": "npm run clean && npm run clone && npm run copy",
    "build:typescript": "tsc",
    "watch": "tsc --watch",
    "test": "mocha && npm run lint",
    "coverage": "nyc node_modules/mocha/bin/mocha",
    "upgrade": "npm-check -u && npm audit fix",
    "bump": "bump --tag --push --all",
    "release": "npm run upgrade && npm run clean && npm run build && npm test && npm run bump"
  },
  "engines": {
    "node": ">=8"
  },
  "devDependencies": {
    "@types/chai": "^4.2.4",
    "@types/command-line-args": "^5.0.0",
    "@types/mocha": "^5.2.7",
    "@types/node": "^12.11.6",
    "chai": "^4.2.0",
    "coveralls": "^3.0.7",
    "eslint": "^6.5.1",
    "eslint-config-modular": "^7.0.1",
    "mocha": "^6.2.2",
    "npm-check": "^5.9.0",
    "nyc": "^14.1.1",
    "shx": "^0.3.2",
    "tslint": "^5.20.0",
    "tslint-modular": "^1.6.0",
    "typescript": "^3.6.4",
    "typescript-tslint-plugin": "^0.5.4",
    "version-bump-prompt": "^5.0.5"
  },
  "dependencies": {}
}
