forked from svrooij/sonos2mqtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.54 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
{
"name": "sonos2mqtt",
"version": "0.0.0-development",
"description": "A smarthome bridge between your sonos system and a mqtt server.",
"main": "lib/index.js",
"license": "MIT",
"author": "Stephan van Rooij <[email protected]> (https://svrooij.nl)",
"bin": {
"sonos2mqtt": "lib/index.js"
},
"keywords": [
"sonos",
"mqtt-smarthome",
"mqtt",
"music control"
],
"preferGlobal": true,
"scripts": {
"build": "tsc",
"serve-docs": "docker run --rm --volume=\"$PWD/docs/vendor/bundle:/usr/local/bundle\" --volume=\"$PWD/docs:/srv/jekyll\" -p 4000:4000 -p 35729:35729 -it jekyll/jekyll jekyll serve --livereload",
"test": "eslint ./src/*.ts"
},
"dependencies": {
"@svrooij/sonos": "2.1.0",
"mqtt": "3.0.0",
"serilogger": "^0.3.1",
"strict-event-emitter-types": "^2.0.0",
"yalm": "4.1.0",
"yargs": "15.4.1"
},
"devDependencies": {
"@types/debug": "4.1.5",
"@types/node": "^14.0.27",
"@types/yargs": "15.0.5",
"@typescript-eslint/eslint-plugin": "3.9.0",
"@typescript-eslint/parser": "3.9.0",
"eslint": "7.6.0",
"pre-commit": "1.2.2",
"typescript": "3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/svrooij/sonos2mqtt.git"
},
"bugs": {
"url": "https://github.com/svrooij/sonos2mqtt/issues"
},
"pre-commit": [
"build",
"test"
],
"funding": {
"type": "Github sponsor",
"url": "https://github.com/sponsors/svrooij"
},
"files": [
"README.md",
"LICENSE",
"lib/**/*.ts",
"lib/**/*.js"
]
}