forked from iffy/electron-updater-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 734 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 734 Bytes
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
{
"name": "electron-updater-example",
"version": "0.5.0",
"main": "main.js",
"description": "electron-updater example project",
"author": "Matt Haggard",
"scripts": {
"publish": "DEBUG=electron-builder:* build -p always --win nsis --mac dmg --linux tar.gz"
},
"devDependencies": {
"electron": "^1.7.10",
"electron-builder": "^19.54.0"
},
"dependencies": {
"electron-log": "^2.2.14",
"electron-publisher-s3": "^19.55.1",
"electron-updater": "^2.19.1"
},
"build": {
"publish": [
{
"provider": "s3",
"bucket": "uproxy-test"
}
],
"mac": {
"category": "your.app.category.type",
"target": [
"zip",
"dmg"
]
}
}
}