forked from adumont/tplink-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "tplink-cloud-api",
"description": "Remotely control TP-Link smartplugs (HS100, HS110, HS300) and smartbulbs (LB100, LB110, LB120, LB130) using their cloud web service (no need to be on the same wifi/lan)",
"author": "Alexandre Dumont <[email protected]>",
"homepage": "http://itnerd.space",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/adumont/tplink-cloud-api.git"
},
"bugs": {
"url": "https://github.com/adumont/tplink-cloud-api/issues"
},
"version": "0.8.1",
"main": "./distribution/tplink.js",
"files": [
"/distribution/**/*"
],
"types": "distribution/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "tslint --project tsconfig.json -c tslint.json lib/**/*.ts",
"prepublish": "yarn build",
"test": "mocha -r ts-node/register -p tsconfig.json lib/**/*.spec.ts",
"version": "git push; git push --tags"
},
"keywords": [
"tp-link",
"tplink",
"cloud",
"kasa",
"api",
"smartplug",
"HS100",
"HS110",
"smartbulb",
"LB100",
"LB110",
"LB120",
"LB130",
"KB130",
"KL110",
"KL120",
"KL130",
"HS300"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"axios": "^0.18.1",
"axios-curlirize": "^1.3.7",
"uuid": "^3.4.0"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^5.2.5",
"@types/node": "^10.17.42",
"@types/uuid": "^3.4.9",
"axios-mock-adapter": "^1.18.2",
"chai": "^4.1.2",
"minimist": "^1.2.3",
"mocha": "^7.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.15.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^3.9.7"
}
}