package.json
 1  {
 2    "name": "ws",
 3    "version": "7.5.6",
 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    "engines": {
21      "node": ">=8.3.0"
22    },
23    "files": [
24      "browser.js",
25      "index.js",
26      "lib/*.js"
27    ],
28    "scripts": {
29      "test": "nyc --reporter=lcov --reporter=text mocha --throw-deprecation test/*.test.js",
30      "integration": "mocha --throw-deprecation test/*.integration.js",
31      "lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\""
32    },
33    "peerDependencies": {
34      "bufferutil": "^4.0.1",
35      "utf-8-validate": "^5.0.2"
36    },
37    "peerDependenciesMeta": {
38      "bufferutil": {
39        "optional": true
40      },
41      "utf-8-validate": {
42        "optional": true
43      }
44    },
45    "devDependencies": {
46      "benchmark": "^2.1.4",
47      "bufferutil": "^4.0.1",
48      "eslint": "^7.2.0",
49      "eslint-config-prettier": "^8.1.0",
50      "eslint-plugin-prettier": "^4.0.0",
51      "mocha": "^7.0.0",
52      "nyc": "^15.0.0",
53      "prettier": "^2.0.5",
54      "utf-8-validate": "^5.0.2"
55    }
56  }