forked from tonesto7/homebridge-smartthings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.95 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"chalk": "^4.1.0",
"compare-versions": "^3.6.0",
"express": "^4.17.1",
"hap-nodejs-community-types": "0.3.1",
"lodash": "^4.17.20",
"node-machine-id": "^1.1.12",
"os": "0.1.1",
"portfinder-sync": "^0.0.2",
"request": "^2.88.2",
"winston": "^3.3.3",
"winston-daily-rotate-file": "^4.5.0",
"snyk": "^1.380.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5"
},
"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/#readme",
"keywords": [
"homebridge-plugin",
"smartthings",
"homekit",
"homebridge",
"category_climate",
"category_hubs",
"category_lighting"
],
"funding": {
"type": "paypal",
"url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=RVFJTG8H86SK8&source=url"
},
"scripts": {
"test": "eslint .",
"prettier": "prettier --write src/**/*.js",
"freeport": "npx kill-port 8000",
"start": "homebridge -D -P . -U .",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"main": "src/index.js",
"license": "ISC",
"name": "homebridge-smartthings",
"preferGlobal": true,
"repository": "github:https://github.com/tonesto7/homebridge-smartthings",
"bugs": {
"url": "http://github.com/tonesto7/homebridge-smartthings/issues"
},
"version": "2.3.8",
"snyk": true
}