-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "haiku2mqtt",
"version": "1.0.0",
"description": "Control your Haiku SenseME devices with MQTT.",
"bin": {
"haiku2mqtt": "dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src -d dist -D",
"clean": "rm -rf dist/",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/forty2/haiku2mqtt.git"
},
"author": "Zach Bean <zb@forty2.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/forty2/haiku2mqtt/issues"
},
"homepage": "https://github.com/forty2/haiku2mqtt#readme",
"dependencies": {
"any-observable": "^0.2.0",
"haiku-senseme": "^1.1.0",
"mqtt": "^1.14.1",
"rxjs": "^5.0.0-beta.11",
"yalm": "^4.0.2",
"yargs": "^5.0.0"
},
"devDependencies": {
"babel-plugin-syntax-function-bind": "^6.13.0",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-preset-es2015": "^6.14.0"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-function-bind",
"transform-function-bind",
"transform-object-rest-spread"
]
}
}