package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "ws",
  3. "version": "5.2.3",
  4. "description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js",
  5. "keywords": [
  6. "HyBi",
  7. "Push",
  8. "RFC-6455",
  9. "WebSocket",
  10. "WebSockets",
  11. "real-time"
  12. ],
  13. "homepage": "https://github.com/websockets/ws",
  14. "bugs": "https://github.com/websockets/ws/issues",
  15. "repository": "websockets/ws",
  16. "author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
  17. "license": "MIT",
  18. "main": "index.js",
  19. "files": [
  20. "index.js",
  21. "lib"
  22. ],
  23. "scripts": {
  24. "test": "eslint . && nyc --reporter=html --reporter=text mocha test/*.test.js",
  25. "integration": "eslint . && mocha test/*.integration.js",
  26. "lint": "eslint ."
  27. },
  28. "dependencies": {
  29. "async-limiter": "~1.0.0"
  30. },
  31. "devDependencies": {
  32. "benchmark": "~2.1.2",
  33. "bufferutil": "~3.0.0",
  34. "eslint": "~4.19.0",
  35. "eslint-config-standard": "~11.0.0",
  36. "eslint-plugin-import": "~2.12.0",
  37. "eslint-plugin-node": "~6.0.0",
  38. "eslint-plugin-promise": "~3.8.0",
  39. "eslint-plugin-standard": "~3.0.0",
  40. "mocha": "~5.2.0",
  41. "nyc": "~12.0.2",
  42. "utf-8-validate": "~4.0.0"
  43. }
  44. }