forked from sparkfun/phant-input-mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
54
55
56
57
58
59
60
{
"name": "phant-input-mqtt",
"version": "3.0.3",
"main": "lib/phant-input-mqtt.js",
"description": "mqtt input for phant",
"homepage": "https://github.com/sparkfun/phant-input-mqtt",
"bugs": "https://github.com/sparkfun/phant-input-mqtt/issues",
"author": {
"name": "Todd Treece",
"email": "[email protected]",
"url": "http://uniontownlabs.org"
},
"repository": {
"type": "git",
"url": "git://github.com/sparkfun/phant-input-mqtt"
},
"license": "GPL-3.0",
"keywords": [
"data",
"phant",
"IoT",
"MQTT"
],
"engines": {
"node": "^0.10.30"
},
"devDependencies": {
"grunt": "^0.4.4",
"grunt-contrib-jshint": "^0.9.2",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.0",
"time-grunt": "^0.2.10",
"load-grunt-tasks": "^0.4.0",
"jshint-stylish": "^0.1.5",
"grunt-jsbeautifier": "^0.2.7"
},
"phantConfig": {
"name": "MQTT",
"options": [
{
"label": "Port",
"name": "port",
"default": "1883",
"type": "number",
"description": "The TCP port to listen on."
},
{
"label": "Keychain",
"name": "keychain",
"default": "phant-keychain-hex",
"type": "select",
"require": "keychain",
"description": "The phant keychain module to use"
}
]
},
"peerDependencies": {
"phant-server-mqtt": "^2.0.0"
}
}