forked from mhdawson/micro-app-mqtt-x10-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 958 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
{
"name": "mqtt-x10-bridge",
"version": "1.0.0",
"description": "mqtt to x10 bridge",
"main": "lib/server.js",
"scripts": {
"start": "node lib/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"mqtt": "~1.6.3",
"node-x10-comm": "~1.0.7",
"serialport": "~2.0.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpetrocik/mqtt-x10-bridge.git"
},
"keywords": [
"iot",
"mqtt",
"sensor",
"x10",
"home automation",
"smart home"
],
"author": {
"name": "John Petrocik"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jpetrocik/mqtt-x10-bridge/issues"
},
"homepage": "https://github.com/jpetrocik/mqtt-x10-bridge#readme",
"contributors": [
{
"name": "Michael Dawson",
"email": "[email protected]"
},
{
"name": "John Petrocik",
"email": "john@@petrocik.net"
}
]
}