{
  "name": "routerify",
  "version": "0.3.0",
  "description": "Opinionated router loader for Express-like applications",
  "homepage": "https://github.com/NotNinja/routerify",
  "bugs": {
    "url": "https://github.com/NotNinja/routerify/issues"
  },
  "author": {
    "name": "Alasdair Mercer",
    "email": "mercer.alasdair@gmail.com",
    "url": "https://not.ninja"
  },
  "license": "MIT",
  "keywords": [
    "router",
    "express",
    "restify"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/NotNinja/routerify.git"
  },
  "dependencies": {
    "glob": "^7.1.1",
    "lodash.defaultsdeep": "^4.6.0"
  },
  "devDependencies": {
    "chai": "^3.5.0",
    "codecov": "^2.2.0",
    "eslint": "^3.19.0",
    "eslint-config-notninja": "^0.1.1",
    "istanbul": "^0.4.5",
    "mocha": "^3.4.1",
    "sinon": "^2.2.0"
  },
  "main": "src/routerify.js",
  "scripts": {
    "ci": "npm run test",
    "report-coverage": "istanbul cover _mocha --report lcovonly -- -R spec \"test/**/*.spec.js\" && codecov",
    "pretest": "eslint \"src/**/*.js\" \"test/**/*.js\"",
    "test": "istanbul cover _mocha -- -R list \"test/**/*.spec.js\"",
    "posttest": "istanbul check-coverage"
  },
  "engines": {
    "node": ">=6"
  }
}
