1
|
{
|
2
|
"name": "ws",
|
3
|
"version": "6.2.1",
|
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
|
"browser": "browser.js",
|
20
|
"files": [
|
21
|
"browser.js",
|
22
|
"index.js",
|
23
|
"lib/*.js"
|
24
|
],
|
25
|
"scripts": {
|
26
|
"test": "npm run lint && nyc --reporter=html --reporter=text mocha test/*.test.js",
|
27
|
"integration": "npm run lint && mocha test/*.integration.js",
|
28
|
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yml}\""
|
29
|
},
|
30
|
"dependencies": {
|
31
|
"async-limiter": "~1.0.0"
|
32
|
},
|
33
|
"devDependencies": {
|
34
|
"benchmark": "~2.1.4",
|
35
|
"bufferutil": "~4.0.0",
|
36
|
"coveralls": "~3.0.3",
|
37
|
"eslint": "~5.15.0",
|
38
|
"eslint-config-prettier": "~4.1.0",
|
39
|
"eslint-plugin-prettier": "~3.0.0",
|
40
|
"mocha": "~6.0.0",
|
41
|
"nyc": "~13.3.0",
|
42
|
"prettier": "~1.16.1",
|
43
|
"utf-8-validate": "~5.0.0"
|
44
|
}
|
45
|
}
|