forked from tonesto7/homebridge-smartthings-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.45 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
{
"dependencies": {
"request": "^2.88.0",
"lodash": "4.17.15",
"chalk": "^3.0.0",
"express": "4.17.1",
"request-promise-native": "^1.0.8",
"compare-versions": "^3.5.1",
"winston-logrotate": "^1.3.0",
"debounce-promise": "^3.1.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1"
},
"description": "SmartThings plugin for HomeBridge",
"engines": {
"homebridge": ">=0.4.46",
"node": ">=0.12.0"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"homepage": "https://github.com/tonesto7/homebridge-smartthings-v2/#readme",
"keywords": [
"homebridge-plugin",
"smartthings",
"homekit",
"homebridge"
],
"scripts": {
"test": "eslint .",
"prettier": "prettier --write src/**/*.js",
"start": "homebridge -D -P . -U ."
},
"main": "/src/index.js",
"license": "ISC",
"name": "homebridge-smartthings-v2",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "git+https://github.com/tonesto7/homebridge-smartthings-v2.git"
},
"bugs": {
"url": "https://github.com/tonesto7/homebridge-smartthings-v2/issues"
},
"version": "2.0.10"
}