-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1005 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
45
46
{
"name": "homebridge-bgh-smart",
"keywords": [
"homebridge-plugin"
],
"version": "1.0.0",
"description": "BGH Smart Control plugin for homebridge",
"main": "dist/index.js",
"author": "Sergio Behrends <[email protected]>",
"scripts": {
"build": "babel index.js -d dist && babel lib -d dist/lib",
"prepublishOnly": "npm run build",
"test": "jest",
"test:watch": "jest --watch"
},
"files": [
"dist"
],
"contributors": [
{
"name": "Roberto González",
"email": "[email protected]"
},
{
"name": "Joaquín",
"url": "https://github.com/joaqtor"
}
],
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.4.0",
"core-js": "^3.0.0",
"request": "^2.79.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"jest": "^24.5.0",
"nock": "^10.0.6"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
}
}