-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.07 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": "fastify-wamp-router",
"version": "0.4.0",
"description": "Web Application Messaging Protocol router for fastify",
"main": "plugin.js",
"engines": {
"node": ">=7.5.0"
},
"scripts": {
"coverage": "tap test.js --cov --no-browser --coverage-report html",
"lint": "standard --fix",
"test": "standard --fix && tap test.js --cov --no-browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lependu/fastify-wamp-router.git"
},
"keywords": [
"node.js",
"fastify",
"wamp",
"publish",
"subscribe",
"rpc",
"dealer",
"broker"
],
"author": "Ákos Kovács <lependu@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/lependu/fastify-wamp-router/issues"
},
"homepage": "https://github.com/lependu/fastify-wamp-router#readme",
"devDependencies": {
"fastify": "^2.7.1",
"standard": "^14.0.0",
"tap": "^12.7.0"
},
"dependencies": {
"fastify-plugin": "^1.6.0",
"wamp-server": "0.0.9"
},
"greenkeeper": {
"ignore": [
"tap"
]
}
}