This repository has been archived by the owner on Jun 6, 2024. It is now read-only.
generated from sindresorhus/electron-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
132 lines (132 loc) · 3.21 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mamd-analytical",
"productName": "MaMD Analytical",
"version": "0.4.6",
"description": "MaMDAnalytical uses an artificial neural network (aNN) to classify an unknown cranium into a reference group.",
"license": "",
"repository": "rer145/mamd-analytical",
"author": {
"name": "Ron Richardson",
"email": "[email protected]"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"start": "electron .",
"start-d": "electron . --debug",
"start-di": "electron . --debug --forceInstall",
"start-i": "electron . --forceInstall",
"start-test": "electron . --debug --resources \"D:\\Test Path Windows\\Inner Path\"",
"gh-pack": "node build/dist/build-app.js --dir",
"gh-dist-win": "node build/dist/build-app.js --win",
"gh-dist-mac": "node build/dist/build-app.js --mac",
"pack": "electron-builder --dir",
"dist": "electron-builder --macos --windows -p always",
"dist-win": "electron-builder --windows",
"dist-mac": "electron-builder --macos",
"travis-pack": "electron-builder --dir",
"travis-dist": "electron-builder --macos --windows -p always",
"travis-dist-win": "electron-builder --windows -p always",
"travis-dist-mac": "electron-builder --macos -p always"
},
"dependencies": {
"bootstrap": "^4.3.1",
"chart.js": "^2.9.2",
"chartjs-plugin-colorschemes": "^0.4.0",
"command-line-args": "^5.1.1",
"electron-context-menu": "^0.12.1",
"electron-debug": "^3.0.0",
"electron-log": "^3.0.9",
"electron-notarize": "^0.2.1",
"electron-pdf-window": "^1.0.12",
"electron-progressbar": "^1.2.0",
"electron-settings": "^3.2.0",
"electron-store": "^3.3.0",
"electron-unhandled": "^2.2.0",
"electron-updater": "^4.0.6",
"electron-util": "^0.11.0",
"electron-window-state": "^5.0.3",
"find": "^0.3.0",
"fs": "0.0.1-security",
"jquery": "^3.4.1",
"popper.js": "^1.15.0",
"q": "^1.5.1",
"sudo-prompt": "^9.0.0",
"tether": "^1.4.6",
"universal-analytics": "^0.4.20"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"electron": "^5.0.3",
"electron-builder": "^22.4.1"
},
"build": {
"appId": "edu.msu.MaMDAnalytical",
"productName": "MaMD Analytical",
"copyright": "Copyright ${author}",
"directories": {
"buildResources": "build",
"output": "dist"
},
"publish": [
{
"provider": "github",
"owner": "rer145",
"repo": "mamd-analytical"
}
],
"win": {
"verifyUpdateCodeSignature": false,
"extraResources": [
{
"from": "./build/R-Portable/R-Portable-Win",
"to": "R-Portable"
},
{
"from": "./build/scripts",
"to": "scripts"
},
{
"from": "./build/setup",
"to": "setup"
}
],
"target": [
"nsis",
"portable"
]
},
"mac": {
"category": "public.app-category.education",
"darkModeSupport": false,
"extraResources": [
{
"from": "./build/R-Portable/R-Portable-Mac",
"to": "R-Portable"
},
{
"from": "./build/scripts",
"to": "scripts"
},
{
"from": "./build/setup",
"to": "setup"
}
]
},
"dmg": {
"iconSize": 160,
"contents": [
{
"x": 180,
"y": 170
},
{
"x": 480,
"y": 170,
"type": "link",
"path": "/Applications"
}
]
}
}
}