{
  "name": "node-laravel-router",
  "version": "2.0.1",
  "description": "A Laravel-inspired router for node.js apps",
  "main": "index.js",
  "directories": {
    "lib": "lib",
    "test": "test"
  },
  "scripts": {
    "test": "mocha",
    "test:coverage": "nyc npm test",
    "commit": "git-cz",
    "lint": "npx eslint lib test",
    "lint:fix": "npm run lint -- --fix"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/simplymichael/node-laravel-router.git"
  },
  "keywords": ["express", "laravel", "node", "router", "routing-engine"],
  "author": "simplymichael <simplymichaelorji@gmail.com> (https://github.com/simplymichael)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/simplymichael/node-laravel-router/issues"
  },
  "homepage": "https://github.com/simplymichael/node-laravel-router#readme",
  "devDependencies": {
    "commitizen": "^4.3.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^9.4.0",
    "express": "^4.19.2",
    "ghooks": "^2.0.4",
    "lodash": "^4.17.21",
    "mocha": "^10.4.0",
    "nyc": "^15.1.0",
    "supertest": "^7.0.0"
  },
  "dependencies": {
    "qs": "^6.12.1"
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-conventional-changelog"
    },
    "ghooks": {
      "pre-commit": "npm run lint && npm run test:coverage"
    }
  },
  "engines": {
    "node": ">=18.18.2",
    "npm": ">=9.8.1"
  }
}
