forked from plasticrake/homebridge-tplink-smarthome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.25 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "homebridge-tplink-smarthome",
"version": "5.1.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.17.0",
"homebridge": ">=0.4.27"
},
"dependencies": {
"lodash.castarray": "^4.4.0",
"semver": "^7.3.2",
"tplink-smarthome-api": "~2.0.0"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"chai": "^4.2.0",
"cspell": "^4.0.61",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"fs-extra": "^9.0.0",
"hap-nodejs": "^0.6.11",
"homebridge": "^1.0.4",
"mocha": "^7.1.2",
"node-persist": "^0.0.11",
"prettier": "^2.0.5",
"rewire": "^5.0.0",
"sinon": "^9.0.2",
"sinon-chai": "^3.5.0",
"standard-version": "^8.0.0",
"tplink-smarthome-simulator": "^1.10.0",
"typescript": "^3.9.2"
},
"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",
"test": "mocha",
"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"
}
}