package.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. {
  2. "name": "engine.io",
  3. "version": "4.0.4",
  4. "description": "The realtime engine behind Socket.IO. Provides the foundation of a bidirectional connection between client and server",
  5. "main": "lib/engine.io.js",
  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": "2.0.0",
  30. "cookie": "~0.4.1",
  31. "cors": "~2.8.5",
  32. "debug": "~4.1.0",
  33. "engine.io-parser": "~4.0.0",
  34. "ws": "^7.1.2"
  35. },
  36. "devDependencies": {
  37. "babel-eslint": "^8.0.2",
  38. "eiows": "^3.3.0",
  39. "engine.io-client": "4.0.4",
  40. "eslint": "^4.19.1",
  41. "eslint-config-prettier": "^6.9.0",
  42. "expect.js": "^0.3.1",
  43. "mocha": "^4.0.1",
  44. "prettier": "^1.19.1",
  45. "s": "0.1.1",
  46. "superagent": "^3.8.1"
  47. },
  48. "scripts": {
  49. "lint": "eslint lib/ test/ *.js",
  50. "test": "npm run lint && npm run format:check && mocha && EIO_WS_ENGINE=eiows mocha",
  51. "format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'",
  52. "format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'"
  53. },
  54. "repository": {
  55. "type": "git",
  56. "url": "git@github.com:socketio/engine.io.git"
  57. },
  58. "files": [
  59. "lib/"
  60. ],
  61. "engines": {
  62. "node": ">=10.0.0"
  63. }
  64. }