forked from yunba/MQTT.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 987 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
{
"author": "Adam Rudd <[email protected]>",
"name": "mqtt",
"description": "A library for the MQTT protocol",
"version": "0.3.7",
"contributors": [
"Matteo Collina <[email protected]> (https://github.com/mcollina)"
],
"keywords": [
"mqtt",
"publish/subscribe",
"publish",
"subscribe"
],
"repository": {
"type": "git",
"url": "git://github.com/TigerZhang/MQTT.js.git"
},
"main": "index.js",
"scripts": {
"test": "mocha"
},
"bin": {
"mqtt_pub": "./bin/mqtt_pub",
"mqtt_sub": "./bin/mqtt_sub"
},
"engines": {
"node": ">=0.8.6"
},
"browser": {
"./lib/mqtt.js": "./lib/browser.js",
"./lib/parsing_utils.js": "./lib/parsing_utils_browser.js"
},
"dependencies": {
"readable-stream": "~1.0.2",
"bops": "~0.1.1",
"bignum": "~0.6.2",
"druuid": "git+https://github.com/TigerZhang/druuid.git#master"
},
"devDependencies": {
"mocha": "*",
"should": "*"
}
}