forked from Fairyon/webvisual
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "webvisual-builder",
"version": "0.8.0",
"description": "gui builder for webvisual-server and webvisual-gui",
"productName": "webvisual installer",
"license": "MIT",
"private": true,
"author": "Johannes Brautzsch <[email protected]>",
"owner": "Forschungszentrum Jülich GmbH",
"scripts": {
"preinstall": "npm update",
"postinstall": "install-app-deps",
"dist:win": "build --windows"
},
"build": {
"appId": "fz-juelich.webvisual.server",
"win": {
"msi": true,
"publish": [
"github"
],
"icon": "build/icon.ico",
"owners": "Forschungszentrum Jülich"
},
"asar": false,
"compression": "store",
"remoteReleases": true,
"iconUrl": "https://github.com/fooloomanzoo/webvisual/blob/master/build/icon.ico?raw=true",
"loadingGif": "build/install-spinner.gif"
},
"publish": "never",
"dependencies": {
"electron": "*",
"electron-builder": "*",
"webvisual-schemas": "github:fooloomanzoo/webvisual-schemas"
},
"engines": {
"node": ">= 6.0",
"npm": "*"
},
"directories": {
"buildResources": "./build",
"output": "./dist",
"app": "./src"
}
}