-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
82 lines (82 loc) · 1.83 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
{
"name": "homebridge-eq3ble",
"version": "1.3.6",
"description": "Homebridge plugin to control EQ3 bluetooth thermostats",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"start": "NODE=production node ./dist/index",
"dev": "npm run build && homebridge -D -U ./homebridge-config -P ./",
"lint": "./node_modules/.bin/eslint src",
"build": "./node_modules/.bin/babel src -d dist"
},
"author": "Max Nowack <max@unsou.de>",
"license": "MIT",
"keywords": [
"homebridge-plugin",
"bluetooth",
"thermostat",
"homeautomation"
],
"repository": {
"type": "git",
"url": "git://github.com/maxnowack/homebridge-eq3ble.git"
},
"bugs": {
"url": "http://github.com/maxnowack/homebridge-eq3ble/issues"
},
"files": [
"dist"
],
"engines": {
"node": ">=0.12.0",
"homebridge": ">=0.2.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-class-properties"
]
},
"eslintConfig": {
"extends": [
"airbnb-base"
],
"parser": "babel-eslint",
"rules": {
"semi": [
2,
"never"
],
"no-param-reassign": [
2,
{
"props": false
}
]
}
},
"dependencies": {
"babel-core": "6.18.2",
"dot-prop": "^4.1.0",
"eq3ble": "git+https://github.com/maxnowack/node-eq3ble.git",
"is-mac": "1.0.1",
"mqtt": "1.12.0",
"p-timeout": "1.0.0"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-eslint": "7.1.0",
"babel-plugin-transform-class-properties": "6.18.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"babel-watch": "2.0.3",
"eslint": "3.9.1",
"eslint-config-airbnb-base": "10.0.1",
"eslint-plugin-babel": "3.3.0",
"eslint-plugin-import": "2.2.0"
}
}