package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "router",
  3. "description": "Simple middleware-style router",
  4. "version": "2.2.0",
  5. "author": "Douglas Christopher Wilson <doug@somethingdoug.com>",
  6. "contributors": [
  7. "Blake Embrey <hello@blakeembrey.com>"
  8. ],
  9. "license": "MIT",
  10. "repository": "pillarjs/router",
  11. "dependencies": {
  12. "debug": "^4.4.0",
  13. "depd": "^2.0.0",
  14. "is-promise": "^4.0.0",
  15. "parseurl": "^1.3.3",
  16. "path-to-regexp": "^8.0.0"
  17. },
  18. "devDependencies": {
  19. "finalhandler": "^2.1.0",
  20. "mocha": "10.2.0",
  21. "nyc": "15.1.0",
  22. "run-series": "^1.1.9",
  23. "standard": "^17.1.0",
  24. "supertest": "6.3.3"
  25. },
  26. "files": [
  27. "lib/",
  28. "LICENSE",
  29. "HISTORY.md",
  30. "README.md",
  31. "index.js"
  32. ],
  33. "engines": {
  34. "node": ">= 18"
  35. },
  36. "scripts": {
  37. "lint": "standard",
  38. "test": "mocha --reporter spec --bail --check-leaks test/",
  39. "test:debug": "mocha --reporter spec --bail --check-leaks test/ --inspect --inspect-brk",
  40. "test-ci": "nyc --reporter=lcov --reporter=text npm test",
  41. "test-cov": "nyc --reporter=text npm test",
  42. "version": "node scripts/version-history.js && git add HISTORY.md"
  43. }
  44. }