Run npm install (#43)
All checks were successful
Lint / pre-commit Linting (push) Successful in 1m18s

Reviewed-on: #43
This commit was merged in pull request #43.
This commit is contained in:
2025-12-16 01:07:55 +01:00
parent 9510650dd1
commit 74d74b73ad
614 changed files with 6056 additions and 159231 deletions

48
node_modules/ws/package.json generated vendored
View File

@@ -1,6 +1,6 @@
{
"name": "ws",
"version": "5.2.4",
"version": "7.5.10",
"description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js",
"keywords": [
"HyBi",
@@ -16,29 +16,41 @@
"author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
"license": "MIT",
"main": "index.js",
"browser": "browser.js",
"engines": {
"node": ">=8.3.0"
},
"files": [
"browser.js",
"index.js",
"lib"
"lib/*.js"
],
"scripts": {
"test": "eslint . && nyc --reporter=html --reporter=text mocha test/*.test.js",
"integration": "eslint . && mocha test/*.integration.js",
"lint": "eslint ."
"test": "nyc --reporter=lcov --reporter=text mocha --throw-deprecation test/*.test.js",
"integration": "mocha --throw-deprecation test/*.integration.js",
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\""
},
"dependencies": {
"async-limiter": "~1.0.0"
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
},
"devDependencies": {
"benchmark": "~2.1.2",
"bufferutil": "~3.0.0",
"eslint": "~4.19.0",
"eslint-config-standard": "~11.0.0",
"eslint-plugin-import": "~2.12.0",
"eslint-plugin-node": "~6.0.0",
"eslint-plugin-promise": "~3.8.0",
"eslint-plugin-standard": "~3.0.0",
"mocha": "~5.2.0",
"nyc": "~12.0.2",
"utf-8-validate": "~4.0.0"
"benchmark": "^2.1.4",
"bufferutil": "^4.0.1",
"eslint": "^7.2.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prettier": "^2.0.5",
"utf-8-validate": "^5.0.2"
}
}