{
  "name": "holiday-router",
  "description": "General purpose flexible URI router written in TypeScript",
  "version": "1.1.5",
  "private": false,
  "author": "Dmitri Snytkine",
  "license": "MIT",
  "scripts": {
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags",
    "prebuild": "node ./node-build-os.js clean",
    "build": "tsc --pretty",
    "pretest": "npm run build",
    "test": "nyc mocha build/tests/ --recursive",
    "format": "eslint src --ext .ts --fix",
    "lint": "eslint src --ext .ts",
    "coverage": "mv coverage/coverage-final.json coverage/coverage.json"
  },
  "pre-commit": [
    "lint",
    "test"
  ],
  "engines": {
    "node": ">=8.11.0"
  },
  "typings": "build/types/index.d.ts",
  "files": [
    "build/",
    "README.md",
    "LICENSE"
  ],
  "main": "./build/index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/snytkine/holiday_router.git"
  },
  "keywords": [
    "URI",
    "Router",
    "Typescript"
  ],
  "nyc": {
    "extension": [
      ".ts"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/sandbox/**",
      "**/interfaces/**",
      "**/coverage/**",
      "**/tests/**",
      "**/index.ts",
      "*.js"
    ],
    "reporter": [
      "html",
      "text",
      "json"
    ],
    "all": true
  },
  "dependencies": {
    "@types/expect": "^24.3.0",
    "@typescript-eslint/eslint-plugin": "^2.13.0",
    "constantinople": "^3.1.1",
    "debug": "^4.1.1",
    "eslint-config-airbnb-typescript": "^6.3.1",
    "eslint-plugin-import": "^2.19.1",
    "http-method-enum": "^1.0.0",
    "lodash": "4.17.12",
    "methods": "^1.1.2",
    "source-map-support": "^0.5.16",
    "uglify-js": "^2.6.0"
  },
  "devDependencies": {
    "@types/chai": "^4.2.7",
    "@types/debug": "^4.1.5",
    "@types/methods": "^1.1.0",
    "@types/mocha": "^5.2.6",
    "@types/node": "^12.12.14",
    "chai": "^4.2.0",
    "chai-arrays": "^2.0.0",
    "eslint": "^6.8.0",
    "eslint-config-prettier": "^6.8.0",
    "eslint-plugin-prettier": "^3.1.2",
    "mocha": "^7.1.1",
    "nyc": "^14.1.1",
    "pre-commit": "^1.2.2",
    "prettier": "^1.19.1",
    "typescript": "^3.7.4"
  }
}
