github-pages-deploy-action/node_modules/ws/package.json

64 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2020-03-31 20:42:07 +08:00
{
2020-03-31 20:57:48 +08:00
"name": "ws",
"version": "7.2.1",
2020-03-31 20:42:07 +08:00
"description": "Simple to use, blazing fast and thoroughly tested websocket client and server for Node.js",
"keywords": [
"HyBi",
"Push",
"RFC-6455",
"WebSocket",
"WebSockets",
"real-time"
],
2020-03-31 20:57:48 +08:00
"homepage": "https://github.com/websockets/ws",
"bugs": "https://github.com/websockets/ws/issues",
"repository": "websockets/ws",
"author": "Einar Otto Stangvik <einaros@gmail.com> (http://2x.io)",
2020-03-31 20:42:07 +08:00
"license": "MIT",
"main": "index.js",
2020-03-31 20:57:48 +08:00
"browser": "browser.js",
"engines": {
"node": ">=8.3.0"
},
"files": [
"browser.js",
"index.js",
"lib/*.js"
],
"scripts": {
"test": "npm run lint && nyc --reporter=html --reporter=text mocha --throw-deprecation test/*.test.js",
"integration": "npm run lint && mocha --throw-deprecation test/*.integration.js",
"lint": "eslint --ignore-path .gitignore . && prettier --check --ignore-path .gitignore \"**/*.{json,md,yaml,yml}\""
},
2020-03-31 20:42:07 +08:00
"peerDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
},
2020-03-31 20:57:48 +08:00
"devDependencies": {
"benchmark": "^2.1.4",
"bufferutil": "^4.0.1",
"coveralls": "^3.0.3",
"eslint": "^6.0.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.0.1",
"mocha": "^6.1.3",
"nyc": "^14.0.0",
"prettier": "^1.17.0",
"utf-8-validate": "^5.0.2"
2020-03-31 20:42:07 +08:00
},
2020-03-31 20:57:48 +08:00
"greenkeeper": {
"commitMessages": {
"dependencyUpdate": "[pkg] Update ${dependency} to version ${version}",
"devDependencyUpdate": "[pkg] Update ${dependency} to version ${version}"
}
}
2020-03-31 20:42:07 +08:00
}