-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (43 loc) · 1.02 KB
/
package.json
File metadata and controls
47 lines (43 loc) · 1.02 KB
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
{
"name": "electron-app",
"version": "1.0.0",
"description": "This is an application for testing auto-update",
"main": "main.js",
"dependencies": {
"pretty-bytes": "^2.0.1"
},
"devDependencies": {
"electron-prebuilt": "^0.37.8",
"grunt": "~0.4.5",
"grunt-ts": "5.5.0-beta.2",
"grunt-cli": "*",
"electron-builder": "*",
"grunt-electron":"*",
"electron-packager": "*",
"grunt-contrib-copy": "*",
"npm-run-script": "*"
},
"build": {
"app-bundle-id": "farokh.fafar",
"app-cetegory-type": "public.app-category.developer-tools",
"productName": "electron-app",
"compression": "maximum",
"win" : {
"iconUrl": "https://github.com/Farokhcpu/Electron-App/blob/master/icon.ico"
},
"osx": {
"target": "dmg"
}
},
"directories": {
"buildResources": "./build",
"output": "./dist",
"app": "./app"
},
"scripts": {
"postinstall": "install-app-deps",
"pack": "build --target dir",
"dist": "build"
},
"author": "fafar"
}