-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·44 lines (44 loc) · 942 Bytes
/
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
{
"name": "homebridge-esp-led",
"version": "1.0.0",
"description": "Homebridge plugin to control LEDs on an ESP8266.",
"license": "ISC",
"keywords": [
"homebridge-plugin"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"author": {
"name": "Christoph Hagen",
"email": "[email protected]"
},
"contributors": [
{
"name": "Christoph Hagen"
}
],
"repository": {
"type": "git",
"url": "git://github.com/christophhagen/homebridge-ESP-LED.git"
},
"scripts": {
"lint": "grunt lint",
"test": "mocha test/simple.js",
"prepublish": "grunt lint && mocha"
},
"preferGlobal": true,
"dependencies": {
"request": "^2.65.0"
},
"devDependencies": {
"chai": "^3.4.1",
"chai-things": "^0.2.0",
"express": "^4.13.3",
"grunt": "^1.3.0",
"grunt-contrib-jshint": "^0.11.3",
"hap-nodejs": "0.0.3",
"mocha": "^2.3.4"
}
}