This repository has been archived by the owner on Dec 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #37 from felixrieseberg/forge
Introduce electron-forge
- Loading branch information
Showing
15 changed files
with
58 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,45 @@ | ||
{ | ||
"name": "installer", | ||
"version": "0.1.0", | ||
"description": "**Clone and run for a quick way to see an Electron in action.**", | ||
"main": "main.js", | ||
"productName": "node-installer", | ||
"description": "An Electron application for installing, updating and managing versions of Node.js.", | ||
"main": "src/main/main.js", | ||
"scripts": { | ||
"start": "electron-forge start", | ||
"package": "electron-forge package", | ||
"make": "electron-forge make", | ||
"test": "standard" | ||
}, | ||
"keywords": [], | ||
"author": "Mikeal Rogers <[email protected]> (http://www.mikealrogers.com)", | ||
"license": "Apache-2.0", | ||
"config": { | ||
"forge": { | ||
"make_targets": { | ||
"win32": [ | ||
"squirrel", | ||
"zip" | ||
], | ||
"darwin": [ | ||
"zip" | ||
], | ||
"linux": [ | ||
"deb", | ||
"rpm" | ||
] | ||
}, | ||
"electronPackagerConfig": { | ||
"appBundleId": "org.nodejs.installer" | ||
}, | ||
"electronWinstallerConfig": { | ||
"name": "installer" | ||
}, | ||
"electronInstallerDebian": {}, | ||
"electronInstallerRedhat": {} | ||
} | ||
}, | ||
"dependencies": { | ||
"electron-compile": "^6.4.1", | ||
"electron-sudo": "^3.0.8", | ||
"flexboxgrid": "^6.3.1", | ||
"font-awesome": "^4.6.3", | ||
|
@@ -15,20 +51,7 @@ | |
"yo-yo": "^1.2.2" | ||
}, | ||
"devDependencies": { | ||
"electron-builder": "^5.10.5", | ||
"electron-prebuilt": "^1.2.5", | ||
"electron-prebuilt-compile": "1.6.11", | ||
"standard": "^7.1.2" | ||
}, | ||
"scripts": { | ||
"start": "electron .", | ||
"pack": "build --dir", | ||
"dist": "build", | ||
"test": "standard" | ||
}, | ||
"keywords": [], | ||
"author": "Mikeal Rogers <[email protected]> (http://www.mikealrogers.com)", | ||
"license": "Apache-2.0", | ||
"build": { | ||
"appId": "org.nodejs.installer" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.