forked from hapijs/nes
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·46 lines (46 loc) · 1.12 KB
/
package.json
File metadata and controls
executable file
·46 lines (46 loc) · 1.12 KB
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": "9.0.2",
"repository": "git://github.com/hapijs/nes",
"main": "lib/index.js",
"browser": "dist/client.js",
"keywords": [
"hapi",
"plugin",
"websocket"
],
"dependencies": {
"boom": "7.x.x",
"bounce": "1.x.x",
"call": "5.x.x",
"cryptiles": "4.x.x",
"hoek": "5.x.x",
"iron": "5.x.x",
"joi": "13.x.x",
"query-string": "^6.2.0",
"teamwork": "3.x.x",
"ws": "5.x.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-minify": "^0.2.0",
"code": "5.x.x",
"hapi": "17.x.x",
"lab": "17.x.x",
"mkdirp": "0.5.1"
},
"babel": {
"presets": [
"es2015"
]
},
"scripts": {
"build-client": "mkdirp 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"
}