-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1.26 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
{
"name": "android-messages",
"version": "0.0.1",
"description": "Icon: message by Gregor Cresnar from the Noun Project",
"main": "main.js",
"productName": "Android Messages",
"scripts": {
"build": "npm run build-clean && npm run build-darwin && npm run build-linux && npm run build-win32",
"build-clean": "rimraf dist",
"build-darwin": "rimraf dist/*darwin* && electron-packager . --platform=darwin --arch=x64 --icon=img/appicon --out=dist",
"build-linux": "rimraf dist/*linux* && electron-packager . --platform=linux --arch=x64 --icon=img/appicon --out=dist",
"build-win32": "rimraf dist/*win32* && electron-packager . --platform=win32 --arch=x64 --icon=img/appicon --out=dist",
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/GyozaGuy/android-messages.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://gitlab.com/GyozaGuy/android-messages/issues"
},
"homepage": "https://gitlab.com/GyozaGuy/android-messages#README",
"dependencies": {
"electron": "^2.0.11",
"electron-reload": "^1.4.0"
},
"devDependencies": {
"electron-packager": "^12.1.0",
"rimraf": "^2.6.2"
}
}