package.json 907 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "name": "connect-history-api-fallback",
  3. "version": "1.5.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": ["lib"],
  17. "scripts": {
  18. "test": "eslint lib/index.js test/index_test.js && nodeunit test/index_test.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "http://github.com/bripkens/connect-history-api-fallback.git"
  23. },
  24. "author": {
  25. "name": "Ben Ripkens",
  26. "email": "bripkens.dev@gmail.com",
  27. "url": "http://bripkens.de"
  28. },
  29. "contributors": [
  30. "Craig Myles <cr@igmyles.com> (http://www.craigmyles.com)"
  31. ],
  32. "license": "MIT",
  33. "devDependencies": {
  34. "eslint": "^0.18.0",
  35. "nodeunit": "^0.9.1",
  36. "sinon": "^1.14.1"
  37. }
  38. }