-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 2.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "homey-community-store-installer",
"version": "1.0.0",
"description": "This desktop app installs the Homey Community Store app on your Homey to allow remote installations from the Homey Community Store",
"scripts": {
"dev": "electron-webpack dev",
"compile": "electron-webpack",
"dist": "yarn compile && electron-builder",
"dist:dir": "yarn dist --dir -c.compression=store -c.mac.identity=null",
"dist:all": "yarn compile && electron-builder -wlm --x64",
"release": "electron-builder --mac --win --linux -p always"
},
"author": "Max van de Laar",
"license": "GPL-3.0-or-later",
"homepage": "https://store.homey.community",
"repository": {
"type": "git",
"url":"https://github.com/MaxvandeLaar/homey-community-store-installer.git"
},
"productName": "Homey Community Store Installer",
"copyright": "Copyright © 2020 Max van de Laar",
"build": {
"appId": "com.maxvandelaar.homey-community-store-installer",
"directories": {
"output": "release"
},
"publish": [
{
"provider": "github",
"owner": "MaxvandeLaar",
"repo": "homey-community-store-installer",
"vPrefixedTagName": true
},
{
"provider": "s3",
"bucket": "homey-community-store",
"acl": "public-read",
"region": "eu-central-1",
"path": "/com.maxvandelaar.homey-community-store-installer"
}
],
"mac": {
"identity": "Apple Development: Max van de Laar (954FKX5Y42)",
"target": [
"dmg"
]
},
"win": {
"target": [
"portable"
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"electronWebpack": {
"whiteListedModules": [
"bootstrap-vue"
]
},
"dependencies": {
"athom-api": "^3.1.1",
"bootstrap": "^4.5.0",
"bootstrap-vue": "^2.15.0",
"cli-table": "^0.3.1",
"colors": "^1.1.2",
"deepmerge": "^2.1.0",
"electron-log": "^4.2.2",
"figures": "^2.0.0",
"filesize": "^3.6.1",
"form-data": "^3.0.0",
"fs-extra": "^5.0.0",
"gitignore-parser": "0.0.2",
"homey-lib": "^2.4.9",
"ignore-walk": "^3.0.3",
"inquirer": "^5.1.0",
"monitorctrlc": "^2.0.1",
"node-fetch": "^2.6.0",
"npm-programmatic": "0.0.10",
"object-path": "^0.11.4",
"parse-git-config": "^3.0.0",
"source-map-support": "^0.5.16",
"streamifier": "^0.1.1",
"tar-fs": "^1.16.0",
"tar-stream": "^2.1.3",
"tmp-promise": "^1.0.4",
"underscore": "^1.8.3",
"update-notifier": "^2.3.0",
"vue-router": "^3.3.4",
"yargs": "^11.0.0",
"zlib": "^1.0.5"
},
"devDependencies": {
"electron": "8.2.4",
"electron-builder": "^22.4.1",
"electron-webpack": "^2.8.2",
"electron-webpack-vue": "^2.4.0",
"node-sass": "^4.14.1",
"sass-loader": "^9.0.2",
"vue": "^2.6.11",
"webpack": "~4.42.1"
}
}