forked from mqttjs/MQTT.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 876 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
{
"author": "Adam Rudd <[email protected]>",
"name": "mqtt",
"description": "A library for the MQTT protocol",
"version": "0.3.12",
"contributors": [
"Matteo Collina <[email protected]> (https://github.com/mcollina)"
],
"keywords": [
"mqtt",
"publish/subscribe",
"publish",
"subscribe"
],
"repository": {
"type": "git",
"url": "git://github.com/adamvr/MQTT.js.git"
},
"main": "index.js",
"scripts": {
"test": "mocha"
},
"pre-commit": "test",
"bin": {
"mqtt_pub": "./bin/mqtt_pub",
"mqtt_sub": "./bin/mqtt_sub"
},
"engines": {
"node": ">=0.8.6"
},
"browser": {
"./lib/mqtt.js": "./lib/browser.js"
},
"dependencies": {
"readable-stream": "~1.0.2"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"pre-commit": "0.0.7",
"sinon": "~1.10.0"
}
}