package.json 548 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "nodejs-websocket",
  3. "version": "1.7.2",
  4. "author": "Sitegui <sitegui@sitegui.com.br>",
  5. "description": "Basic server&client approach to websocket (text and binary frames)",
  6. "main": "./index.js",
  7. "repository": {
  8. "type": "git",
  9. "url": "https://github.com/sitegui/nodejs-websocket"
  10. },
  11. "keywords": [
  12. "websocket",
  13. "websocket-server",
  14. "websocket-client"
  15. ],
  16. "license": "MIT",
  17. "engines": {
  18. "node": ">=4"
  19. },
  20. "scripts": {
  21. "test": "mocha -R spec -b"
  22. },
  23. "devDependencies": {
  24. "mocha": "^5.2.0",
  25. "should": "^13.2.3"
  26. }
  27. }