forked from plasticrake/tplink-smarthome-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.41 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
91
92
93
94
{
"name": "tplink-smarthome-api",
"version": "0.22.0",
"description": "TP-Link Smart Home API",
"author": "Patrick Seal",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/plasticrake/tplink-smarthome-api.git"
},
"bugs": {
"url": "https://github.com/plasticrake/tplink-smarthome-api/issues",
"email": "code@plasticrake.com"
},
"keywords": [
"tplink",
"kasa",
"hs100",
"hs105",
"hs110",
"hs200",
"lb100",
"lb110",
"lb120",
"lb130",
"lb200",
"lb230",
"home",
"smartplug",
"smartswitch",
"smartbulb",
"api"
],
"main": "lib/index.js",
"engines": {
"node": ">=4.8.0",
"npm": ">=3"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"commander": "^2.12.2",
"lodash.defaultto": "^4.14.0",
"lodash.groupby": "^4.6.0",
"lodash.isequal": "^4.5.0",
"loglevel": "^1.6.0",
"tplink-smarthome-crypto": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-entries": "^1.0.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"bats": "^0.4.2",
"bats-assert": "git+https://github.com/ztombol/bats-assert.git",
"bats-support": "git+https://github.com/ztombol/bats-support.git",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-things": "^0.2.0",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"dotenv": "^4.0.0",
"jsdoc-to-markdown": "^3.1.0-0",
"mocha": "^4.1.0",
"nyc": "^11.4.1",
"rewire": "^3.0.2",
"semistandard": "^12.0.0",
"sinon": "^4.1.3",
"sinon-chai": "^2.14.0",
"tplink-smarthome-simulator": "^1.5.2"
},
"scripts": {
"preversion": "npm test",
"postversion": "git push && git push --tags",
"test": "semistandard && cross-env NODE_ENV=test nyc mocha && bats test",
"coverage": "cross-env NODE_ENV=test nyc report --reporter=text-lcov > coverage/coverage.lcov && codecov",
"build": "babel src -d lib",
"prepare": "npm run build",
"docs": "jsdoc2md 'src/**/*.js' > API.md && jsdoc2md --template=jsdoc2md/README.hbs 'src/**/*.js' > README.md"
},
"bin": {
"tplink-smarthome-api": "lib/cli.js"
},
"files": [
"lib"
],
"semistandard": {
"ignore": [
"/docs"
]
}
}