2016-10-05 17:42:02 +03:00
|
|
|
{
|
|
|
|
"name": "electron-forge",
|
2017-01-01 01:57:17 +03:00
|
|
|
"version": "2.3.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"description": "A complete tool for building modern Electron applications",
|
2016-12-11 12:21:10 +03:00
|
|
|
"repository": "https://github.com/electron-userland/electron-forge",
|
2016-10-05 17:42:02 +03:00
|
|
|
"main": "index.js",
|
|
|
|
"bin": {
|
2016-12-03 06:16:36 +03:00
|
|
|
"electron-forge": "dist/electron-forge.js",
|
|
|
|
"forge": "dist/electron-forge.js"
|
2016-10-05 17:42:02 +03:00
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"build": "gulp build",
|
2016-12-03 15:50:40 +03:00
|
|
|
"precommit": "npm run lint",
|
|
|
|
"commit": "git-cz",
|
2016-12-29 05:45:44 +03:00
|
|
|
"lint": "eslint src test gulpfile.babel.js",
|
2016-12-14 12:23:35 +03:00
|
|
|
"prepublish": "gulp build",
|
|
|
|
"pretest": "gulp build",
|
2016-12-03 12:52:39 +03:00
|
|
|
"test": "npm run lint && mocha test --compilers js:babel-register --timeout=300000",
|
2016-12-11 07:10:39 +03:00
|
|
|
"release:patch": "changelog -p && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags",
|
|
|
|
"release:minor": "changelog -m && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags",
|
|
|
|
"release:major": "changelog -M && node ci/fix-changelog.js && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags",
|
2016-12-28 06:39:57 +03:00
|
|
|
"watch": "gulp watch",
|
|
|
|
"watch-link": "nodemon --watch src --exec \"npm link\""
|
2016-10-05 17:42:02 +03:00
|
|
|
},
|
|
|
|
"author": "Samuel Attard",
|
|
|
|
"license": "MIT",
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-eslint": "^7.0.0",
|
|
|
|
"babel-plugin-syntax-async-functions": "^6.13.0",
|
|
|
|
"babel-plugin-transform-async-to-module-method": "^6.16.0",
|
|
|
|
"babel-plugin-transform-runtime": "^6.15.0",
|
|
|
|
"babel-preset-es2015": "^6.16.0",
|
2016-10-05 17:50:40 +03:00
|
|
|
"chai": "^3.5.0",
|
2016-12-03 15:50:40 +03:00
|
|
|
"commitizen": "^2.8.6",
|
|
|
|
"cz-customizable": "4.0.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"eslint": "^3.7.1",
|
|
|
|
"eslint-config-airbnb-base": "^8.0.0",
|
2016-10-05 18:12:00 +03:00
|
|
|
"eslint-plugin-import": "^1.16.0",
|
2016-12-11 06:54:22 +03:00
|
|
|
"generate-changelog": "^1.0.2",
|
2016-10-05 17:42:02 +03:00
|
|
|
"gulp": "^3.9.1",
|
2016-10-05 17:50:40 +03:00
|
|
|
"gulp-babel": "^6.1.2",
|
2016-12-28 06:39:57 +03:00
|
|
|
"mocha": "^3.2.0",
|
|
|
|
"nodemon": "^1.11.0"
|
2016-10-05 17:42:02 +03:00
|
|
|
},
|
|
|
|
"babel": {
|
|
|
|
"presets": [
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-runtime",
|
|
|
|
"syntax-async-functions",
|
|
|
|
[
|
|
|
|
"transform-async-to-module-method",
|
|
|
|
{
|
|
|
|
"module": "bluebird",
|
|
|
|
"method": "coroutine"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2016-12-03 09:22:25 +03:00
|
|
|
"babel-register": "^6.16.3",
|
2016-10-05 17:42:02 +03:00
|
|
|
"bluebird": "^3.4.6",
|
|
|
|
"colors": "^1.1.2",
|
|
|
|
"commander": "^2.9.0",
|
2016-12-04 03:56:06 +03:00
|
|
|
"debug": "^2.3.3",
|
2016-12-04 06:13:20 +03:00
|
|
|
"electron-installer-dmg": "^0.1.2",
|
2016-12-09 09:05:44 +03:00
|
|
|
"electron-packager": "^8.4.0",
|
2016-12-31 10:13:37 +03:00
|
|
|
"electron-sudo": "malept/electron-sudo#fix-linux-sudo-detection",
|
2016-12-04 03:11:23 +03:00
|
|
|
"electron-winstaller": "^2.5.0",
|
2016-12-14 11:16:15 +03:00
|
|
|
"fs-promise": "^1.0.0",
|
2016-12-29 02:25:05 +03:00
|
|
|
"github": "^7.2.0",
|
2016-12-27 06:17:51 +03:00
|
|
|
"glob": "^7.1.1",
|
2016-12-14 11:16:15 +03:00
|
|
|
"inquirer": "^2.0.0",
|
2016-12-27 06:17:09 +03:00
|
|
|
"lodash.template": "^4.4.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"log-symbols": "^1.0.2",
|
2016-12-28 06:39:57 +03:00
|
|
|
"node-fetch": "^1.6.3",
|
2016-12-11 04:08:17 +03:00
|
|
|
"node-gyp": "^3.4.0",
|
2016-12-28 06:39:57 +03:00
|
|
|
"nugget": "^2.0.1",
|
|
|
|
"opn": "^4.0.2",
|
2016-12-31 06:58:14 +03:00
|
|
|
"ora": "^0.4.0",
|
2016-12-03 08:09:10 +03:00
|
|
|
"pify": "^2.3.0",
|
2016-12-30 05:45:44 +03:00
|
|
|
"resolve-package": "^1.0.1",
|
2016-10-05 17:42:02 +03:00
|
|
|
"semver": "^5.3.0",
|
2017-01-01 00:52:07 +03:00
|
|
|
"sudo-prompt": "^6.2.1",
|
2016-12-03 06:16:36 +03:00
|
|
|
"username": "^2.2.2",
|
2016-12-03 12:05:08 +03:00
|
|
|
"yarn-or-npm": "^2.0.2",
|
|
|
|
"zip-folder": "^1.0.0"
|
2016-12-03 15:50:40 +03:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-customizable"
|
|
|
|
},
|
|
|
|
"cz-customizable": {
|
|
|
|
"config": "./.cz.js"
|
|
|
|
}
|
2016-12-04 08:17:39 +03:00
|
|
|
},
|
|
|
|
"optionalDependencies": {
|
2016-12-04 09:34:45 +03:00
|
|
|
"electron-installer-debian": "^0.4.0",
|
2016-12-04 12:12:13 +03:00
|
|
|
"electron-installer-flatpak": "^0.4.0",
|
2016-12-04 09:34:45 +03:00
|
|
|
"electron-installer-redhat": "^0.3.0"
|
2016-12-13 18:26:34 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 6.0"
|
2016-10-05 17:42:02 +03:00
|
|
|
}
|
|
|
|
}
|