https://github.com/websockets/ws
Raw File
Tip revision: 5bccfe59252923b85e7cffd56e3ddc1bd742f378 authored by Luigi Pinca on 18 February 2017, 07:14:24 UTC
[dist] 2.1.0
Tip revision: 5bccfe5
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 and server for Node.js",
  "version": "2.1.0",
  "license": "MIT",
  "main": "index.js",
  "keywords": [
    "HyBi",
    "Push",
    "RFC-6455",
    "WebSocket",
    "WebSockets",
    "real-time"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/websockets/ws.git"
  },
  "scripts": {
    "test-travis": "npm run lint && istanbul cover _mocha --report lcovonly -- test/*.test.js",
    "coverage": "istanbul cover _mocha --report html -- test/*.test.js",
    "integration": "npm run lint && mocha test/*.integration.js",
    "test": "npm run lint && mocha test/*.test.js",
    "lint": "eslint ."
  },
  "dependencies": {
    "ultron": "~1.1.0"
  },
  "devDependencies": {
    "benchmark": "~2.1.2",
    "bufferutil": "~2.0.0",
    "eslint": "~3.15.0",
    "eslint-config-semistandard": "~7.0.0",
    "eslint-config-standard": "~6.2.1",
    "eslint-plugin-promise": "~3.4.0",
    "eslint-plugin-standard": "~2.0.1",
    "istanbul": "~0.4.5",
    "mocha": "~3.2.0",
    "utf-8-validate": "~3.0.0"
  }
}
back to top