-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
48 lines (48 loc) · 1.71 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
48
{
"name": "hapi-plugin-websocket",
"version": "2.4.9",
"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": "rse@engelschall.com",
"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.4",
"@hapi/boom": "10.0.1",
"@hapi/podium": "5.0.1",
"ws": "8.18.0",
"websocket-framed": "1.2.9",
"@types/node": "22.5.4",
"@types/ws": "8.5.12"
},
"devDependencies": {
"@hapi/hapi": "21.3.10",
"@hapi/basic": "7.0.2",
"eslint": "8.57.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.30.0",
"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"
}
}