package.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "engine.io",
  3. "version": "3.3.2",
  4. "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
  5. "main": "lib/engine.io",
  6. "author": "Guillermo Rauch <guillermo@learnboost.com>",
  7. "homepage": "https://github.com/socketio/engine.io",
  8. "contributors": [
  9. {
  10. "name": "Eugen Dueck",
  11. "web": "https://github.com/EugenDueck"
  12. },
  13. {
  14. "name": "Afshin Mehrabani",
  15. "web": "https://github.com/afshinm"
  16. },
  17. {
  18. "name": "Christoph Dorn",
  19. "web": "https://github.com/cadorn"
  20. },
  21. {
  22. "name": "Mark Mokryn",
  23. "email": "mokesmokes@gmail.com"
  24. }
  25. ],
  26. "license": "MIT",
  27. "dependencies": {
  28. "accepts": "~1.3.4",
  29. "base64id": "1.0.0",
  30. "debug": "~3.1.0",
  31. "engine.io-parser": "~2.1.0",
  32. "ws": "~6.1.0",
  33. "cookie": "0.3.1"
  34. },
  35. "devDependencies": {
  36. "babel-eslint": "^8.0.2",
  37. "babel-preset-es2015": "^6.24.0",
  38. "engine.io-client": "3.3.1",
  39. "eslint": "^4.5.0",
  40. "eslint-config-standard": "^10.2.1",
  41. "eslint-plugin-import": "^2.7.0",
  42. "eslint-plugin-node": "^5.1.1",
  43. "eslint-plugin-promise": "^3.5.0",
  44. "eslint-plugin-standard": "^3.0.1",
  45. "expect.js": "^0.3.1",
  46. "mocha": "^4.0.1",
  47. "s": "0.1.1",
  48. "superagent": "^3.8.1",
  49. "uws": "~9.14.0"
  50. },
  51. "scripts": {
  52. "lint": "eslint lib/ test/ *.js",
  53. "test": "npm run lint && mocha && EIO_WS_ENGINE=uws mocha"
  54. },
  55. "repository": {
  56. "type": "git",
  57. "url": "git@github.com:socketio/engine.io.git"
  58. },
  59. "files": [
  60. "lib/"
  61. ]
  62. }