package.json 853 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "connect-history-api-fallback",
  3. "version": "2.0.0",
  4. "description": "Provides a fallback for non-existing directories so that the HTML 5 history API can be used.",
  5. "keyswords": [
  6. "connect",
  7. "express",
  8. "html5",
  9. "history api",
  10. "fallback",
  11. "spa"
  12. ],
  13. "engines": {
  14. "node": ">=0.8"
  15. },
  16. "main": "lib/index.js",
  17. "files": [
  18. "lib"
  19. ],
  20. "scripts": {
  21. "test": "jest && eslint lib/*.js test/*.js"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "http://github.com/bripkens/connect-history-api-fallback.git"
  26. },
  27. "author": {
  28. "name": "Ben Ripkens",
  29. "email": "bripkens@gmail.com"
  30. },
  31. "contributors": [
  32. "Craig Myles <cr@igmyles.com> (http://www.craigmyles.com)"
  33. ],
  34. "license": "MIT",
  35. "devDependencies": {
  36. "eslint": "^5.16.0",
  37. "jest": "^24.8.0",
  38. "sinon": "^7.3.2"
  39. }
  40. }