forked from hapijs/nes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "nes",
"description": "WebSocket adapter plugin for hapi routes",
"version": "2.0.0",
"repository": "git://github.com/hapijs/nes",
"main": "lib/index.js",
"browser": "dist/client.js",
"keywords": [
"hapi",
"plugin",
"websocket"
],
"engines": {
"node": ">=4.0.0"
},
"dependencies": {
"boom": "3.x.x",
"call": "3.x.x",
"cryptiles": "3.x.x",
"hoek": "3.x.x",
"iron": "3.x.x",
"items": "2.x.x",
"joi": "7.x.x",
"ws": "0.8.x"
},
"peerDependencies": {
"hapi": ">=11.1.0"
},
"devDependencies": {
"babel-cli": "^6.1.2",
"babel-preset-es2015": "^6.1.2",
"code": "2.x.x",
"hapi": "^11.1.x",
"lab": "7.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",
"prepublish": "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"
}