forked from mockoon/mockoon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
53 lines (53 loc) · 1.1 KB
/
electron-builder.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
{
"appId": "com.mockoon.app",
"productName": "Mockoon",
"directories": {
"output": "packages",
"app": "dist"
},
"win": {
"target": "nsis",
"publisherName": "Guillaume Monnet",
"rfc3161TimeStampServer": "http://timestamp.digicert.com"
},
"nsis": {
"artifactName": "mockoon.setup.${version}.${ext}"
},
"mac": {
"target": "dmg",
"type": "distribution",
"artifactName": "mockoon.setup.${version}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"dmg": {
"sign": false
},
"linux": {
"target": [
{
"target": "AppImage"
},
{
"target": "snap"
},
{
"target": "deb"
},
{
"target": "rpm"
}
],
"category": "Development",
"icon": "build",
"artifactName": "mockoon-${version}.${ext}",
"desktop": {
"Name": "Mockoon",
"Type": "Application",
"Categories": "Development"
}
},
"afterSign": "scripts/notarize.js"
}