package.json 898 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "stompjs",
  3. "version": "2.3.3",
  4. "author": "Jeff Mesnil <jmesnil@gmail.com>",
  5. "description": "STOMP for JavaScript apps (Web browser & node.js)",
  6. "scripts": {
  7. "build": "cake build",
  8. "test": "coffeelint -f coffeelint.json -r src && cake test"
  9. },
  10. "devDependencies": {
  11. "coffee-script": "latest",
  12. "coffeelint": "latest",
  13. "jasmine-node": "latest",
  14. "uglify-js": "latest",
  15. "docco": "latest",
  16. "connect": "latest"
  17. },
  18. "optionalDependencies": {
  19. "websocket": "latest"
  20. },
  21. "directories": {
  22. "doc": "doc",
  23. "example": "example",
  24. "test": "test"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/jmesnil/stomp-websocket"
  29. },
  30. "keywords": [
  31. "STOMP",
  32. "Web sockets",
  33. "messaging",
  34. "queue"
  35. ],
  36. "license": "Apache-2.0",
  37. "bugs": {
  38. "url": "https://github.com/jmesnil/stomp-websocket/issues"
  39. }
  40. }