-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
93 lines (93 loc) · 2.02 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "homematic-manager",
"version": "2.7.1",
"private": true,
"dependencies": {
"async": "2.6.2",
"binrpc": "3.3.1",
"electron-ipc-rpc": "1.1.1",
"electron-is-dev": "1.0.1",
"electron-unhandled": "2.1.0",
"electron-window-state": "5.0.3",
"free-jqgrid": "4.15.5",
"hm-discover": "1.1.0",
"homematic-rega": "^1.4.0",
"homematic-xmlrpc": "1.0.2",
"instascan": "1.0.0",
"jquery": "3.3.1",
"jquery-ui-dist": "1.12.1",
"jquery-ui-multiselect-widget": "2.0.2",
"nextport": "1.0.0",
"persist-json": "1.2.0",
"ui-contextmenu": "1.18.1",
"yalm": "4.1.0"
},
"devDependencies": {
"electron": "4.0.5",
"electron-builder": "^20.40.2",
"html-entities": "^1.2.1",
"xo": "0.24.0"
},
"description": "Homematic Device Configuration and Administration",
"main": "main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron .",
"dist": "electron-builder",
"lint": "xo",
"lintfix": "xo --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/hobbyquaker/homematic-manager"
},
"keywords": [
"HomeMatic",
"BidCoS",
"eQ-3",
"rfd",
"hs485d",
"Homegear",
"XML-RPC",
"Smarthome",
"Internet of Things",
"IoT"
],
"author": "Sebastian 'hobbyquaker' Raff <hobbyquaker@gmail.com>",
"contributors": [
"André 'Anli' Litfin"
],
"license": "GPLv3",
"bugs": {
"url": "https://github.com/hobbyquaker/homematic-manager/issues"
},
"homepage": "https://github.com/hobbyquaker/homematic-manager",
"build": {
"productName": "Homematic Manager",
"mac": {
"category": "public.app-category.utilities",
"target": [
"dmg"
]
},
"linux": {
"target": [
"deb",
"tar.gz"
]
},
"win": {
"target": [
"nsis",
"portable"
]
}
},
"xo": {
"space": 4,
"ignore": [
"tools/convert_easymodes.js",
"tools/convert_imgpaths.js"
]
}
}