-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.07 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.07 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
{
"scripts": {
"start": "electron www --debug",
"pack": "build --dir",
"dist": "build",
"dist-win": "build -w --x64 --ia32",
"dist-linux": "build -l",
"dist-mac": "build -m",
"sign-mac": "codesign --deep --force --verbose --sign 'Mac Developer: louiseanton12@gmail.com (53HAW2TS8R)' dist/mac/Lanyang-Whats-Up.app --no-strict"
},
"devDependencies": {
"electron": "^1.3.4",
"electron-builder": "^7.13.X",
"electron-squirrel-startup": "^1.0.0"
},
"build": {
"appId": "tk.lanyang.whatsup",
"productName": "Lanyang-Whats-Up",
"asar": false,
"dmg": {},
"linux": {
"category": "Education"
},
"mac": {
"category": "public.app-category.education",
"identitiy": "louiseanton12@gmail.com (53HAW2TS8R)"
},
"mas": {},
"nsis": {},
"win": {
"iconUrl": "http://i.imgur.com/b9VqSgz.png"
},
"squirrelWindows": {
"iconUrl": "http://i.imgur.com/b9VqSgz.png",
"msi": false,
"useAppIdAsId": true
}
},
"dependencies": {
"cordova-custom-config": "^3.1.2"
}
}