-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
54 lines (53 loc) · 1.26 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
{
"name": "node-milight-promise",
"version": "0.3.2",
"description": "A node module to control Milight LED bulbs and OEM equivalents auch as Rocket LED, Limitless LED Applamp, Easybulb, s`luce, iLight, iBulb, and Kreuzer",
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig/node-milight-promise"
},
"license": "MIT",
"main": "src/index",
"files": [
"examples",
"src",
"LICENSE",
"HISTORY.md",
"README.md"
],
"scripts": {
"test": "./node_modules/.bin/gulp"
},
"homepage": "https://github.com/mwittig/node-milight-promise",
"repository": {
"type": "git",
"url": "https://github.com/mwittig/node-milight-promise"
},
"bugs": {
"url": "https://github.com/mwittig/node-milight-promise/issues"
},
"keywords": [
"SmartHome",
"Milight",
"WifiLight",
"LED"
],
"dependencies": {
"bluebird": "^3.7.2",
"promise-retryer": "0.0.1"
},
"devDependencies": {
"gulp": "^3.9.1",
"mwittig-gulp-coveralls": "^0.2.1",
"gulp-istanbul": "^1.1.3",
"gulp-jasmine": "^4.0.0",
"gulp-plumber": "^1.2.1",
"gulp-print": "^3.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^1.0.0",
"lodash": "^4.17.12"
},
"engines" : {
"node" : ">=4.9.x"
}
}