-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
67 lines (67 loc) · 1.5 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
{
"name": "pimatic-denon-avr",
"description": "Pimatic Plugin to monitor and control a Denon or Marantz AV Receiver",
"author": {
"name": "Marcus Wittig",
"url": "https://github.com/mwittig"
},
"main": "denon-avr",
"icon": "assets/images/logo.svg",
"files": [
"denon-avr.coffee",
"denon-avr-config-schema.coffee",
"device-config-schema.coffee",
"telnet-app-protocol.coffee",
"http-app-protocol.coffee",
"actions",
"devices",
"assets",
"LICENSE",
"HISTORY.md",
"README.md"
],
"keywords": [
"Denon AVR",
"Pioneer AVR",
"Pimatic"
],
"version": "0.9.11",
"homepage": "https://github.com/mwittig/pimatic-denon-avr/tree/master",
"private": false,
"repository": {
"type": "git",
"url": "git://github.com/mwittig/pimatic-denon-avr.git"
},
"bugs": {
"url": "https://github.com/mwittig/pimatic-denon-avr/issues"
},
"license": "AGPL-3.0",
"maintainers": [
{
"name": "mwittig",
"url": "https://github.com/mwittig"
}
],
"configSchema": "denon-avr-config-schema.coffee",
"dependencies": {
"pimatic-plugin-commons": "^0.9.8",
"promise-retryer": "0.0.1",
"restler-promise": "0.0.10",
"xml2js": "^0.4.19"
},
"optionalDependencies": {},
"peerDependencies": {
"pimatic": ">=0.8.0 <1.0.0"
},
"devDependencies": {
"grunt": "^1.0.3",
"grunt-coffeelint": "^0.0.16"
},
"engines": {
"node": ">= 4",
"npm": ">1.1.x"
},
"scripts": {
"test": "grunt test"
}
}