package.json 973 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "eventsource",
  3. "version": "0.1.6",
  4. "description": "W3C compliant EventSource client for Node.js",
  5. "keywords": [
  6. "eventsource",
  7. "http",
  8. "streaming",
  9. "sse"
  10. ],
  11. "homepage": "http://github.com/aslakhellesoy/eventsource-node",
  12. "author": "Aslak Hellesøy <aslak.hellesoy@gmail.com>",
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/aslakhellesoy/eventsource-node.git"
  16. },
  17. "bugs": {
  18. "url": "http://github.com/aslakhellesoy/eventsource-node/issues"
  19. },
  20. "directories": {
  21. "lib": "./lib"
  22. },
  23. "main": "./lib/eventsource",
  24. "licenses": [
  25. {
  26. "type": "MIT",
  27. "url": "http://github.com/aslakhellesoy/eventsource-node/raw/master/LICENSE"
  28. }
  29. ],
  30. "devDependencies": {
  31. "mocha": ">=1.21.4"
  32. },
  33. "scripts": {
  34. "test": "mocha --reporter spec",
  35. "postpublish": "git push && git push --tags"
  36. },
  37. "engines": {
  38. "node": ">=0.8.0"
  39. },
  40. "dependencies": {
  41. "original": ">=0.0.5"
  42. }
  43. }