forked from plasticrake/homebridge-tplink-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 1.91 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
69
70
71
72
73
74
75
76
77
{
"name": "homebridge-tplink-smarthome",
"version": "5.0.0",
"description": "TPLink Smarthome plugin for Homebridge",
"author": "Patrick Seal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/plasticrake/homebridge-tplink-smarthome.git"
},
"bugs": {
"url": "https://github.com/plasticrake/homebridge-tplink-smarthome/issues"
},
"keywords": [
"homebridge-plugin",
"homebridge",
"tplink",
"kasa",
"lb100",
"lb110",
"lb120",
"lb130",
"lb200",
"lb230",
"hs100",
"hs103",
"hs105",
"hs107",
"hs110",
"hs200",
"hs210",
"hs220",
"hs300",
"kp303",
"kp400",
"home",
"smartplug",
"smartbulb"
],
"engines": {
"node": ">=10",
"homebridge": ">=0.4.27"
},
"dependencies": {
"lodash.castarray": "^4.4.0",
"semver": "^7.1.1",
"tplink-smarthome-api": "~2.0.0"
},
"devDependencies": {
"cspell": "^4.0.44",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"prettier": "^1.19.1",
"standard-version": "^7.0.1",
"tplink-smarthome-simulator": "^1.10.0"
},
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"start": "homebridge --plugin-path .",
"debug": "homebridge --debug --user-storage-path $PWD/test/homebridge --plugin-path .",
"debugsim": "homebridge --debug --user-storage-path $PWD/test/homebridge-simulator --plugin-path .",
"lint": "eslint --ignore-path .gitignore .",
"pretest": "npm run lint",
"preversion": "npm test",
"postversion": "git push && git push --tags",
"prerelease": "npm test",
"release": "standard-version --sign",
"cleancache": "rm -rf ~/.homebridge/persist && rm -rf ~/.homebridge/accessories",
"spellcheck": "cspell '{lib,test}/**/*' *.md"
}
}