forked from dvdbng/mqtt-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 988 Bytes
/
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": "mqtt-ws",
"version": "0.2.0",
"description": "a Node.js MQTT/WebSocket bridge",
"author": "Jack Lund <[email protected]>",
"license": "MIT",
"readmeFilename": "README.md",
"preferGlobal": true,
"main": "lib/mqtt-ws.js",
"repository": {
"type": "git",
"url": "https://github.com/M2MConnections/mqtt-ws"
},
"bugs": {
"url": "https://github.com/M2MConnections/mqtt-ws/issues"
},
"dependencies": {
"errno": "*",
"log4js": "*",
"mqtt": "*",
"optimist": "*",
"options": ">=0.0.5",
"underscore": "*",
"ws": "*"
},
"engines": {
"node": ">=0.4.0"
},
"keywords": [
"Node.js",
"Websockets",
"MQTT"
],
"bin": {
"mqttwsBridge": "bin/mqttwsBridge.js"
},
"directories": {
"doc": "doc",
"example": "example"
},
"devDependencies": {},
"gitHead": "a30ac1a692b869b50c6ea56679618e61eaeec8b4",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
}
}