forked from jeubanks/hubitat-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "hubitat-mqtt-bridge",
"version": "2.0.0",
"description": "Bridge between Hubitat and an MQTT broker",
"main": "server.js",
"bin": {
"hubitat-mqtt-bridge": "./bin/hubitat-mqtt-bridge"
},
"scripts": {
"pretest": "npm run hint && npm run style",
"test": "jenkins-mocha",
"hint": "jshint --show-non-errors *.js",
"style": "jscs .",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jeubanks/hubitat-mqtt-bridge.git"
},
"keywords": [
"hubitat",
"mqtt",
"broker"
],
"author": "John Eubanks <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeubanks/hubitat-mqtt-bridge/issues"
},
"homepage": "https://github.com/jeubanks/hubitat-mqtt-bridge",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"express-joi-validator": "^2.0.0",
"express-winston": "^1.2.0",
"joi": "^6.10.0",
"js-yaml": "^3.4.3",
"jsonfile": "^2.2.3",
"mqtt": "^1.7.0",
"request": "^2.65.0",
"semver": "^5.1.0",
"winston": "^2.0.0"
},
"devDependencies": {
"jenkins-mocha": "^2.5.0",
"jscs": "^2.9.0",
"jshint": "^2.9.1"
}
}