forked from stjohnjohnson/smartthings-mqtt-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 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
{
"name": "smartthings-mqtt-proxy",
"version": "1.0.2",
"description": "Proxy between SmartThings and MQTT",
"main": "server.js",
"bin": {
"smartthings-mqtt-proxy": "./bin/smartthings-mqtt-proxy"
},
"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/tcm0116/smartthings-mqtt-proxy.git"
},
"keywords": [
"smartthings",
"mqtt"
],
"author": "Thomas Moore <tcm0116@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tcm0116/smartthings-mqtt-proxy/issues"
},
"homepage": "https://github.com/tcm0116/smartthings-mqtt-proxy",
"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.14.1",
"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"
}
}