-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.12 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
49
50
51
52
53
{
"name": "fox-wamp",
"version": "0.7.11",
"description": "Web Application Message Router/Server WAMP/MQTT",
"author": {
"name": "Anatoly Tsapkov",
"email": "anatoly.tsapkov@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kalmyk/fox-wamp.git"
},
"license": "MIT",
"keywords": [
"wamp",
"mqtt",
"message",
"mq",
"broker",
"router",
"socket",
"subscribe"
],
"dependencies": {
"commander": "^2.20.3",
"jsonschema": "^1.4.0",
"mqtt-packet": "^9.0.0",
"msgpack-lite": "*",
"node-statsd": "*",
"qlobber": "^3.1.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"ws": "^8.18.0"
},
"devDependencies": {
"autobahn": "^22.11.1",
"chai": "^4.5.0",
"chai-as-promised": "*",
"chai-spies": "*",
"eslint": "^7.32.0",
"eslint-plugin-mocha": "^5.3.0",
"mocha": "^10.7.3"
},
"main": "index.js",
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"mocha-node-test": "mocha",
"lint": "eslint --ignore-path .gitignore .",
"test": "npm run-script lint && npm run-script mocha-node-test"
}
}