https://github.com/websockets/ws
Raw File
Tip revision: f939d6bc57eb1c745d06a3a04b86f04e2a0876c8 authored by 3rd-Eden on 16 August 2013, 16:13:52 UTC
v0.4.28
Tip revision: f939d6b
package.json
{
  "author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
  "name": "ws",
  "description": "simple to use, blazing fast and thoroughly tested websocket client, server and console for node.js, up-to-date against RFC-6455",
  "version": "0.4.28",
  "keywords": [
    "Hixie",
    "HyBi",
    "Push",
    "RFC-6455",
    "WebSocket",
    "WebSockets",
    "real-time"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/einaros/ws.git"
  },
  "bin": {
    "wscat": "./bin/wscat"
  },
  "scripts": {
    "test": "make test",
    "install": "(node-gyp rebuild 2> builderror.log) || (exit 0)"
  },
  "engines": {
    "node": ">=0.4.0"
  },
  "dependencies": {
    "commander": "~0.6.1",
    "tinycolor": "0.x",
    "options": ">=0.0.5"
  },
  "devDependencies": {
    "mocha": "1.12.0",
    "should": "1.2.x",
    "expect.js": "0.2.x",
    "benchmark": "0.3.x",
    "ansi": "latest"
  },
  "browser": "./lib/browser.js"
}
back to top