package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "websocket",
  3. "description": "Websocket Client & Server Library implementing the WebSocket protocol as specified in RFC 6455.",
  4. "keywords": [
  5. "websocket",
  6. "websockets",
  7. "socket",
  8. "networking",
  9. "comet",
  10. "push",
  11. "RFC-6455",
  12. "realtime",
  13. "server",
  14. "client"
  15. ],
  16. "author": "Brian McKelvey <theturtle32@gmail.com> (https://github.com/theturtle32)",
  17. "contributors": [
  18. "Iñaki Baz Castillo <ibc@aliax.net> (http://dev.sipdoc.net)"
  19. ],
  20. "version": "1.0.34",
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/theturtle32/WebSocket-Node.git"
  24. },
  25. "homepage": "https://github.com/theturtle32/WebSocket-Node",
  26. "engines": {
  27. "node": ">=4.0.0"
  28. },
  29. "dependencies": {
  30. "bufferutil": "^4.0.1",
  31. "debug": "^2.2.0",
  32. "es5-ext": "^0.10.50",
  33. "typedarray-to-buffer": "^3.1.5",
  34. "utf-8-validate": "^5.0.2",
  35. "yaeti": "^0.0.6"
  36. },
  37. "devDependencies": {
  38. "buffer-equal": "^1.0.0",
  39. "gulp": "^4.0.2",
  40. "gulp-jshint": "^2.0.4",
  41. "jshint-stylish": "^2.2.1",
  42. "jshint": "^2.0.0",
  43. "tape": "^4.9.1"
  44. },
  45. "config": {
  46. "verbose": false
  47. },
  48. "scripts": {
  49. "test": "tape test/unit/*.js",
  50. "gulp": "gulp"
  51. },
  52. "main": "index",
  53. "directories": {
  54. "lib": "./lib"
  55. },
  56. "browser": "lib/browser.js",
  57. "license": "Apache-2.0"
  58. }