{
  "name": "openapi-router",
  "version": "0.0.7",
  "description": "Simple router and validator for ExpressJs and OpenAPI 2.0",
  "main": "./lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "prebuild": "npm run lint && rm -rf lib/*",
    "build": "tsc",
    "lint": "tslint -c tslint.json -e 'node_modules/**/*' '**/*.ts'",
    "test": "NODE_ENV=test nyc --all mocha --require source-map-support/register --require ts-node/register --recursive './src/**/*.tests.ts'",
    "coveralls": "cat ./coverage/lcov.info | coveralls",
    "prepack": "npm run build"
  },
  "keywords": [],
  "author": "Steve Konves",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/skonves/openapi-router.git"
  },
  "devDependencies": {
    "@types/chai": "^4.1.3",
    "@types/mocha": "^5.2.0",
    "@types/node": "^10.1.0",
    "chai": "^4.1.2",
    "coveralls": "^3.0.2",
    "mocha": "^5.1.1",
    "nyc": "^11.8.0",
    "prettier": "^1.12.1",
    "source-map-support": "^0.5.6",
    "ts-node": "^6.0.3",
    "tslint": "^5.10.0",
    "typescript": "^2.8.3"
  },
  "dependencies": {
    "@types/express": "^4.11.1",
    "@types/uuid": "^3.4.3",
    "express": "^4.16.3",
    "jsonschema": "^1.2.4",
    "uuid": "^3.2.1"
  }
}
