package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. {
  2. "name": "sockjs",
  3. "description": "SockJS-node is a server counterpart of SockJS-client a JavaScript library that provides a WebSocket-like object in the browser. SockJS gives you a coherent, cross-browser, Javascript API which creates a low latency, full duplex, cross-domain communication channel between the browser and the web server.",
  4. "version": "0.3.19",
  5. "author": "Marek Majkowski",
  6. "bugs": {
  7. "url": "https://github.com/sockjs/sockjs-node/issues"
  8. },
  9. "contributors": [
  10. {
  11. "name": "Bryce Kahle",
  12. "email": "bkahle@gmail.com"
  13. },
  14. {
  15. "name": "Marek Majkowski",
  16. "email": "deadbeef@popcount.org"
  17. }
  18. ],
  19. "dependencies": {
  20. "faye-websocket": "^0.10.0",
  21. "uuid": "^3.0.1"
  22. },
  23. "devDependencies": {
  24. "coffee-script": "^1.8.0"
  25. },
  26. "homepage": "https://github.com/sockjs/sockjs-node",
  27. "keywords": [
  28. "websockets",
  29. "websocket"
  30. ],
  31. "license": "MIT",
  32. "main": "index",
  33. "repository": {
  34. "type": "git",
  35. "url": "https://github.com/sockjs/sockjs-node.git"
  36. },
  37. "scripts": {
  38. "version": "make build && git add Changelog",
  39. "postversion": "npm publish",
  40. "postpublish": "git push origin --all && git push origin --tags"
  41. }
  42. }