UNPKG

1.23 kBJSONView Raw
1{
2 "name": "ws",
3 "version": "3.3.3",
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 "ultron": "~1.1.0"
32 },
33 "devDependencies": {
34 "benchmark": "~2.1.2",
35 "bufferutil": "~3.0.0",
36 "eslint": "~4.13.0",
37 "eslint-config-standard": "~10.2.0",
38 "eslint-plugin-import": "~2.8.0",
39 "eslint-plugin-node": "~5.2.0",
40 "eslint-plugin-promise": "~3.6.0",
41 "eslint-plugin-standard": "~3.0.0",
42 "mocha": "~4.0.0",
43 "nyc": "~11.3.0",
44 "utf-8-validate": "~4.0.0"
45 }
46}