package.json 916 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "connect-history-api-fallback",
  3. "version": "1.6.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. "html5",
  8. "history api",
  9. "fallback",
  10. "spa"
  11. ],
  12. "engines": {
  13. "node": ">=0.8"
  14. },
  15. "main": "lib/index.js",
  16. "files": [
  17. "lib"
  18. ],
  19. "scripts": {
  20. "test": "eslint lib/index.js test/index_test.js && nodeunit test/index_test.js"
  21. },
  22. "repository": {
  23. "type": "git",
  24. "url": "http://github.com/bripkens/connect-history-api-fallback.git"
  25. },
  26. "author": {
  27. "name": "Ben Ripkens",
  28. "email": "bripkens.dev@gmail.com",
  29. "url": "http://bripkens.de"
  30. },
  31. "contributors": [
  32. "Craig Myles <cr@igmyles.com> (http://www.craigmyles.com)"
  33. ],
  34. "license": "MIT",
  35. "devDependencies": {
  36. "eslint": "^0.18.0",
  37. "nodeunit": "^0.11.3",
  38. "sinon": "^1.14.1"
  39. }
  40. }