forked from rosvik/hapi-plugin-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.67 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "hapi-plugin-websocket",
"version": "2.4.7",
"description": "HAPI plugin for seamless WebSocket integration",
"keywords": [ "hapi", "plugin", "websocket" ],
"main": "./hapi-plugin-websocket.js",
"types": "./hapi-plugin-websocket.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rse/hapi-plugin-websocket.git"
},
"author": {
"name": "Dr. Ralf S. Engelschall",
"email": "[email protected]",
"url": "http://engelschall.com"
},
"homepage": "https://github.com/rse/hapi-plugin-websocket",
"bugs": "https://github.com/rse/hapi-plugin-websocket/issues",
"peerDependencies": {
"@hapi/hapi": ">=18.0.0"
},
"dependencies": {
"urijs": "1.19.11",
"@hapi/hoek": "11.0.2",
"@hapi/boom": "10.0.0",
"ws": "8.12.0",
"websocket-framed": "1.2.9",
"@types/node": "18.11.18",
"@types/ws": "8.5.4"
},
"devDependencies": {
"@hapi/hapi": "21.2.0",
"@hapi/basic": "7.0.0",
"eslint": "8.32.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-node": "11.1.0"
},
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"prepublishOnly": "eslint --config eslint.yaml hapi-plugin-websocket.js sample-server.js",
"test": "node sample-server.js"
}
}