-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.92 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.92 KB
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
{
"name": "sonos-adapter",
"display_name": "Sonos",
"version": "0.11.0",
"description": "Sonos adapter for WebThings Gateway.",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"licenses": "./gather-licenses.js",
"lint": "eslint src",
"build": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/tim-hellhake/sonos-adapter.git"
},
"keywords": [
"adapter",
"sonos"
],
"author": "Tim Hellhake",
"license": "MIT",
"bugs": {
"url": "https://github.com/tim-hellhake/sonos-adapter/issues"
},
"homepage": "https://github.com/tim-hellhake/sonos-adapter#readme",
"dependencies": {
"image-output": "^2.4.2",
"image-pixels": "^2.2.2",
"image-type": "^4.1.0",
"is-browser": "^2.1.0",
"jpeg-js": "^0.4.2",
"mkdirp": "^1.0.4",
"node-fetch": "^2.6.1",
"sonos": "^1.14.0"
},
"files": [
"lib/properties/album-art-property.js",
"lib/properties/album-property.js",
"lib/properties/artist-property.js",
"lib/properties/crossfade-property.js",
"lib/properties/muted-property.js",
"lib/properties/playing-property.js",
"lib/properties/progress-property.js",
"lib/properties/repeat-property.js",
"lib/properties/repeat-shuffle-controller.js",
"lib/properties/shuffle-property.js",
"lib/properties/track-property.js",
"lib/properties/volume-property.js",
"lib/adapter.js",
"lib/property.js",
"lib/speaker.js",
"lib/readonly-property.js",
"SHA256SUMS",
"LICENSE",
"manifest.json"
],
"devDependencies": {
"@types/mkdirp": "^1.0.1",
"@types/node": "^15.12.4",
"@types/node-fetch": "^2.5.10",
"@types/ws": "^7.4.5",
"@typescript-eslint/eslint-plugin": "^4.28.0",
"@typescript-eslint/parser": "^4.28.0",
"eslint": "^7.29.0",
"gateway-addon": "^1.0.0",
"nlf": "^2.1.1",
"typescript": "^4.3.4"
}
}