forked from hapijs/nes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1.1 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": "nes",
"description": "WebSocket adapter plugin for hapi routes",
"version": "6.4.3",
"repository": "git://github.com/hapijs/nes",
"main": "lib/index.js",
"browser": "dist/client.js",
"keywords": [
"hapi",
"plugin",
"websocket"
],
"engines": {
"node": ">=4.5.0"
},
"dependencies": {
"boom": "4.x.x",
"call": "3.x.x",
"cryptiles": "3.x.x",
"hoek": "4.x.x",
"iron": "4.x.x",
"items": "^2.1.x",
"joi": "10.x.x",
"ws": "1.x.x"
},
"peerDependencies": {
"hapi": ">=16.0.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"code": "4.x.x",
"hapi": "16.x.x",
"lab": "14.x.x"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"build-client": "mkdir -p dist; babel lib/client.js --out-file dist/client.js",
"test": "npm run-script build-client && node node_modules/lab/bin/lab -a code -t 100 -L",
"prepare": "npm run-script build-client",
"test-cov-html": "node node_modules/lab/bin/lab -a code -r html -o coverage.html"
},
"license": "BSD-3-Clause"
}