forked from rse/hapi-plugin-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.42 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
49
50
{
"name": "hapi-plugin-websocket",
"version": "2.3.3-1",
"description": "HAPI plugin for seamless WebSocket integration",
"keywords": [
"hapi",
"plugin",
"websocket"
],
"main": "./hapi-plugin-websocket.js",
"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": {
"@hapi/boom": "9.1.1",
"@hapi/hoek": "9.1.1",
"urijs": "^1.19.6",
"websocket-framed": "1.2.4",
"ws": "7.4.6"
},
"devDependencies": {
"@hapi/basic": "6.0.0",
"@hapi/hapi": "20.0.3",
"babel-eslint": "10.1.0",
"eslint": "7.17.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"prepublishOnly": "eslint --config eslint.yaml hapi-plugin-websocket.js sample-server.js",
"test": "node sample-server.js"
}
}