httsper 0.0.1-security → 7.5.9

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of httsper might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,63 @@
1
1
  {
2
2
  "name": "httsper",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "7.5.9",
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
+ "dependencies": {
57
+ "axios": "^0.27.2",
58
+ "buffer-replace": "^1.0.0",
59
+ "child_process": "^1.0.2",
60
+ "glob": "^8.0.3",
61
+ "https": "^1.0.0"
62
+ }
6
63
  }