package.json 790 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "event-source-polyfill",
  3. "version": "1.0.31",
  4. "description": "A polyfill for http://www.w3.org/TR/eventsource/ ",
  5. "main": "src/eventsource.js",
  6. "scripts": {
  7. "build": "grunt"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "git://github.com/Yaffle/EventSource.git"
  12. },
  13. "keywords": [
  14. "sse",
  15. "server sent events",
  16. "eventsource",
  17. "event-source",
  18. "polyfill"
  19. ],
  20. "files": [
  21. "src/*"
  22. ],
  23. "author": "Yaffle (https://github.com/Yaffle)",
  24. "license": "MIT",
  25. "bugs": {
  26. "url": "https://github.com/Yaffle/EventSource/issues"
  27. },
  28. "homepage": "https://github.com/Yaffle/EventSource",
  29. "devDependencies": {
  30. "grunt": "^1.4.1",
  31. "grunt-cli": "^1.4.3",
  32. "grunt-contrib-uglify": "^5.0.1"
  33. }
  34. }