forked from stjohnjohnson/smartthings-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.27 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": "smartthings-mqtt-bridge",
"version": "3.0.0",
"description": "Bridge between SmartThings and an MQTT broker",
"main": "server.js",
"bin": {
"smartthings-mqtt-bridge": "./bin/smartthings-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/stjohnjohnson/smartthings-mqtt-bridge.git"
},
"keywords": [
"smartthings",
"mqtt",
"broker"
],
"author": "St. John Johnson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stjohnjohnson/smartthings-mqtt-bridge/issues"
},
"homepage": "https://github.com/stjohnjohnson/smartthings-mqtt-bridge",
"dependencies": {
"async": "^1.5.2",
"body-parser": "^1.14.1",
"express": "^4.13.3",
"express-joi-validator": "^2.0.0",
"express-winston": "^2.5.0",
"joi": "^13.4.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": "^6.0.0",
"jscs": "^3.0.7",
"jshint": "^2.9.1"
}
}