-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"name": "homebridge-sensibo-sky",
"version": "1.0.0",
"description": "Sensibo Sky support for Homebridge: https://github.com/schurch/homebridge-sensibo",
"license": "ISC",
"author": "Stefan Church",
"homepage": "https://github.com/schurch",
"keywords": [
"homebridge-plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/schurch/homebridge-sensibo.git"
},
"bugs": {
"url": "http://github.com/schurch/homebridge-sensibo/issues"
},
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"main": "dist/index.js",
"files": [
"dist"
],
"dependencies": {
"@babel/polyfill": "^7.0.0",
"axios": "^0.18.1"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.6",
"@babel/preset-typescript": "^7.1.0",
"prettier": "^1.16.4",
"rollup": "^0.67.1",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-node-resolve": "^3.4.0"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c",
"prepublishOnly": "npm run build"
}
}