package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "name": "ws",
  3. "version": "4.1.0",
  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. "safe-buffer": "~5.1.0"
  31. },
  32. "devDependencies": {
  33. "benchmark": "~2.1.2",
  34. "bufferutil": "~3.0.0",
  35. "eslint": "~4.18.0",
  36. "eslint-config-standard": "~11.0.0",
  37. "eslint-plugin-import": "~2.9.0",
  38. "eslint-plugin-node": "~6.0.0",
  39. "eslint-plugin-promise": "~3.6.0",
  40. "eslint-plugin-standard": "~3.0.0",
  41. "mocha": "~5.0.0",
  42. "nyc": "~11.4.1",
  43. "utf-8-validate": "~4.0.0"
  44. }
  45. }