-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
54 lines (54 loc) · 1.33 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
{
"name": "mqtt-bridge-smartthings",
"version": "1.0.5",
"description": "MQTT Bridge to SmartThings [MBS]",
"main": "mbs-server.js",
"bin": {
"mqtt-bridge-smartthings": "./bin/mqtt-bridge-smartthings"
},
"scripts": {
"pretest": "npm run hint && npm run style",
"test": "jenkins-mocha",
"hint": "jshint --show-non-errors *.js",
"style": "jscs .",
"start": "node mbs-server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sgupta999/mqtt-bridge-smartthings"
},
"keywords": [
"smartthings",
"mqtt",
"broker",
"sonoff",
"tasmota"
],
"author": "Sandeep Gupta",
"license": "MIT",
"bugs": {
"url": "https://github.com/sgupta999/mqtt-bridge-smartthings/issues"
},
"homepage": "https://github.com/sgupta999/mqtt-bridge-smartthings",
"dependencies": {
"async": "^3.1.0",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"express-joi-validation": "^4.0.3",
"express-winston": "^4.0.1",
"fs-extra": "^8.1.0",
"@hapi/joi": "^16.1.7",
"js-yaml": "^3.13.1",
"jsonfile": "^5.0.0",
"mqtt": "^3.0.0",
"mqtt-wildcard": "^3.0.9",
"request": "^2.88.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"jenkins-mocha": "^8.0.0",
"eslint": "^6.6.0",
"jshint": "^2.10.2"
}
}