forked from adumont/tplink-cloud-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.52 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
{
"name": "tplink-cloud-api",
"description": "Remotely control TP-Link smartplugs (HS100, HS110) 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.3.8",
"main": "./distribution/tplink.js",
"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"
},
"keywords": [
"tp-link",
"tplink",
"cloud",
"kasa",
"api",
"smartplug",
"HS100",
"HS110",
"smartbulb",
"LB100",
"LB110",
"LB120",
"LB130"
],
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"axios": "^0.17.1",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/uuid": "^3.4.4",
"axios-mock-adapter": "^1.15.0",
"chai": "^4.1.2",
"mocha": "^5.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-no-unused-expression-chai": "^0.1.3",
"typescript": "^3.0.3"
}
}