package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {
  2. "name": "socket.io",
  3. "version": "2.2.0",
  4. "description": "node.js realtime framework server",
  5. "keywords": [
  6. "realtime",
  7. "framework",
  8. "websocket",
  9. "tcp",
  10. "events",
  11. "socket",
  12. "io"
  13. ],
  14. "main": "./lib/index",
  15. "files": [
  16. "lib/"
  17. ],
  18. "license": "MIT",
  19. "repository": {
  20. "type": "git",
  21. "url": "git://github.com/socketio/socket.io"
  22. },
  23. "scripts": {
  24. "test": "nyc mocha --reporter spec --slow 200 --bail --timeout 10000 test/socket.io.js"
  25. },
  26. "dependencies": {
  27. "debug": "~4.1.0",
  28. "engine.io": "~3.3.1",
  29. "has-binary2": "~1.0.2",
  30. "socket.io-adapter": "~1.1.0",
  31. "socket.io-client": "2.2.0",
  32. "socket.io-parser": "~3.3.0"
  33. },
  34. "devDependencies": {
  35. "expect.js": "0.3.1",
  36. "mocha": "^3.5.3",
  37. "nyc": "^11.2.1",
  38. "superagent": "^3.8.2",
  39. "supertest": "^3.0.0"
  40. },
  41. "contributors": [
  42. {
  43. "name": "Guillermo Rauch",
  44. "email": "rauchg@gmail.com"
  45. },
  46. {
  47. "name": "Arnout Kazemier",
  48. "email": "info@3rd-eden.com"
  49. },
  50. {
  51. "name": "Vladimir Dronnikov",
  52. "email": "dronnikov@gmail.com"
  53. },
  54. {
  55. "name": "Einar Otto Stangvik",
  56. "email": "einaros@gmail.com"
  57. }
  58. ]
  59. }