package.json 1001 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "koa-router",
  3. "description": "Router middleware for koa. Provides RESTful resource routing.",
  4. "repository": {
  5. "type": "git",
  6. "url": "https://github.com/alexmingoia/koa-router.git"
  7. },
  8. "main": "lib/router.js",
  9. "files": [
  10. "lib"
  11. ],
  12. "author": "Alex Mingoia <talk@alexmingoia.com>",
  13. "version": "7.4.0",
  14. "keywords": [
  15. "koa",
  16. "middleware",
  17. "router",
  18. "route"
  19. ],
  20. "dependencies": {
  21. "debug": "^3.1.0",
  22. "http-errors": "^1.3.1",
  23. "koa-compose": "^3.0.0",
  24. "methods": "^1.0.1",
  25. "path-to-regexp": "^1.1.1",
  26. "urijs": "^1.19.0"
  27. },
  28. "devDependencies": {
  29. "expect.js": "^0.3.1",
  30. "gulp": "^3.8.11",
  31. "jsdoc-to-markdown": "^1.1.1",
  32. "koa": "2.2.0",
  33. "mocha": "^2.0.1",
  34. "should": "^6.0.3",
  35. "supertest": "^1.0.1"
  36. },
  37. "scripts": {
  38. "test": "NODE_ENV=test mocha test/**/*.js",
  39. "docs": "NODE_ENV=test node node_modules/gulp/bin/gulp.js docs"
  40. },
  41. "engines": {
  42. "node": ">= 4"
  43. },
  44. "license": "MIT"
  45. }