package.json 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. {
  2. "name": "engine.io-client",
  3. "description": "Client for the realtime Engine",
  4. "license": "MIT",
  5. "version": "3.5.2",
  6. "main": "lib/index.js",
  7. "homepage": "https://github.com/socketio/engine.io-client",
  8. "contributors": [
  9. {
  10. "name": "Guillermo Rauch",
  11. "email": "rauchg@gmail.com"
  12. },
  13. {
  14. "name": "Vladimir Dronnikov",
  15. "email": "dronnikov@gmail.com"
  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. "dependencies": {
  27. "component-emitter": "~1.3.0",
  28. "component-inherit": "0.0.3",
  29. "debug": "~3.1.0",
  30. "engine.io-parser": "~2.2.0",
  31. "has-cors": "1.1.0",
  32. "indexof": "0.0.1",
  33. "parseqs": "0.0.6",
  34. "parseuri": "0.0.6",
  35. "ws": "~7.4.2",
  36. "xmlhttprequest-ssl": "~1.6.2",
  37. "yeast": "0.1.2"
  38. },
  39. "devDependencies": {
  40. "babel-core": "^6.24.0",
  41. "babel-eslint": "4.1.7",
  42. "babel-loader": "^6.4.1",
  43. "babel-preset-es2015": "^6.24.0",
  44. "blob": "^0.0.4",
  45. "concat-stream": "^1.6.0",
  46. "del": "^2.2.2",
  47. "derequire": "^2.0.6",
  48. "engine.io": "3.4.0",
  49. "eslint-config-standard": "4.4.0",
  50. "eslint-plugin-standard": "1.3.1",
  51. "expect.js": "^0.3.1",
  52. "express": "4.15.2",
  53. "gulp": "3.9.1",
  54. "gulp-eslint": "1.1.1",
  55. "gulp-file": "^0.3.0",
  56. "gulp-istanbul": "^1.1.1",
  57. "gulp-mocha": "^4.3.0",
  58. "gulp-task-listing": "1.0.1",
  59. "istanbul": "^0.4.5",
  60. "mocha": "^3.2.0",
  61. "webpack": "1.12.12",
  62. "webpack-stream": "^3.2.0",
  63. "zuul": "3.11.1",
  64. "zuul-builder-webpack": "^1.2.0",
  65. "zuul-ngrok": "4.0.0"
  66. },
  67. "scripts": {
  68. "test": "gulp test"
  69. },
  70. "browser": {
  71. "ws": false,
  72. "xmlhttprequest-ssl": "./lib/xmlhttprequest.js",
  73. "./lib/globalThis.js": "./lib/globalThis.browser.js"
  74. },
  75. "repository": {
  76. "type": "git",
  77. "url": "https://github.com/socketio/engine.io-client.git"
  78. },
  79. "files": [
  80. "index.js",
  81. "lib/",
  82. "engine.io.js"
  83. ]
  84. }