-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
executable file
·44 lines (44 loc) · 1.02 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
{
"name": "@hapi/nes",
"description": "WebSocket adapter plugin for hapi routes",
"version": "14.0.0",
"repository": "git://github.com/hapijs/nes",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=18.0.0"
},
"files": [
"lib"
],
"keywords": [
"hapi",
"plugin",
"websocket"
],
"dependencies": {
"@hapi/boom": "^10.0.1",
"@hapi/bounce": "^3.0.1",
"@hapi/call": "^9.0.1",
"@hapi/cryptiles": "^6.0.1",
"@hapi/hoek": "^11.0.2",
"@hapi/iron": "^7.0.1",
"@hapi/teamwork": "^6.0.0",
"@hapi/validate": "^2.0.1",
"ws": "^8.17.1"
},
"devDependencies": {
"@hapi/code": "^9.0.3",
"@hapi/eslint-plugin": "^7.0.0",
"@hapi/hapi": "^21.3.9",
"@hapi/lab": "^26.0.0",
"@types/node": "^20.14.2",
"joi": "^17.13.3",
"typescript": "^5.4.5"
},
"scripts": {
"test": "lab -a @hapi/code -t 100 -L -m 10000 -Y",
"test-cov-html": "lab -a @hapi/code -r html -o coverage.html -m 10000"
},
"license": "BSD-3-Clause"
}