-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.3 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
{
"name": "bravia2mqtt",
"version": "1.0.0",
"description": "Control your Sony Bravia TV with MQTT.",
"bin": {
"bravia2mqtt": "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/bravia2mqtt.git"
},
"author": "Zach Bean <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/forty2/bravia2mqtt/issues"
},
"homepage": "https://github.com/forty2/bravia2mqtt#readme",
"dependencies": {
"bravia-simple-ip-control": "^1.0.0",
"mqtt": "^2.7.1",
"rxjs": "^5.3.0",
"yalm": "^4.0.2",
"yargs": "^8.0.1"
},
"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-env": "^1.4.0"
},
"babel": {
"sourceMaps": "inline",
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
"syntax-function-bind",
"transform-function-bind",
"transform-object-rest-spread"
]
}
}