-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "electron-windows-autoupdate",
"version": "1.0.0",
"description": "Electron Windows auto update example",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "build --win",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"squirrelWindows": {
"remoteReleases": "http://localhost:9000/dist/win1/"
},
"win": {
"certificateFile": "./certs/my_signing_key.pfx",
"certificatePassword": ""
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/vojtatranta/electron-windows-autoupdate.git"
},
"keywords": [
"Electron",
"Windows",
"autoupdate"
],
"author": "Vojtech Tranta <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vojtatranta/electron-windows-autoupdate/issues"
},
"homepage": "https://github.com/vojtatranta/electron-windows-autoupdate#readme",
"devDependencies": {
"electron": "^1.4.3",
"electron-builder": "^7.14.1"
}
}