2016-10-05 17:42:02 +03:00
|
|
|
{
|
|
|
|
"name": "electron-forge",
|
2017-09-10 17:50:12 +03:00
|
|
|
"version": "4.0.2",
|
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",
|
2017-01-01 07:09:24 +03:00
|
|
|
"main": "dist/api/index.js",
|
2016-10-05 17:42:02 +03:00
|
|
|
"bin": {
|
2016-12-03 06:16:36 +03:00
|
|
|
"electron-forge": "dist/electron-forge.js",
|
2017-04-16 10:15:50 +03:00
|
|
|
"forge": "dist/electron-forge.js",
|
2017-04-16 10:37:33 +03:00
|
|
|
"electron-forge-vscode-nix": "script/vscode.sh",
|
|
|
|
"electron-forge-vscode-win": "script/vscode.cmd"
|
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",
|
2017-01-01 07:09:24 +03:00
|
|
|
"docs": "esdoc",
|
2017-01-27 18:09:25 +03:00
|
|
|
"install": "node tabtab-install.js",
|
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",
|
2017-01-01 10:20:15 +03:00
|
|
|
"test": "npm run lint && npm run test-all",
|
2017-01-02 03:38:25 +03:00
|
|
|
"test-coverage": "npm run lint && npm run test-all-coverage",
|
2017-05-22 11:46:39 +03:00
|
|
|
"test-all": "mocha test/**/*_spec*.js test/**/**/*_spec*.js --compilers js:babel-register --timeout=300000",
|
|
|
|
"test-fast": "mocha test/**/*_spec.js test/**/**/*_spec.js --compilers js:babel-register --timeout=10000",
|
2017-01-02 03:38:25 +03:00
|
|
|
"test-all-coverage": "cross-env NODE_ENV=test nyc npm run test-all",
|
|
|
|
"test-fast-coverage": "cross-env NODE_ENV=test nyc npm run test-fast",
|
2017-03-10 04:39:09 +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": {
|
2017-05-20 09:41:43 +03:00
|
|
|
"asar": "^0.13.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"babel-eslint": "^7.0.0",
|
2017-02-20 06:52:43 +03:00
|
|
|
"babel-plugin-istanbul": "^4.0.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"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",
|
2017-05-02 08:58:17 +03:00
|
|
|
"chai": "^4.0.0",
|
|
|
|
"chai-as-promised": "^7.0.0",
|
2016-12-03 15:50:40 +03:00
|
|
|
"commitizen": "^2.8.6",
|
2017-01-02 03:45:24 +03:00
|
|
|
"coveralls": "^2.11.15",
|
2017-05-02 08:58:17 +03:00
|
|
|
"cross-env": "^5.0.0",
|
2017-09-17 23:05:08 +03:00
|
|
|
"cz-customizable": "^5.0.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"esdoc": "^1.0.1",
|
|
|
|
"esdoc-importpath-plugin": "^1.0.0",
|
|
|
|
"esdoc-standard-plugin": "^1.0.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"eslint": "^3.7.1",
|
|
|
|
"eslint-config-airbnb-base": "^8.0.0",
|
2017-05-01 08:43:41 +03:00
|
|
|
"eslint-plugin-import": "^1.16.0",
|
2017-01-30 02:31:43 +03:00
|
|
|
"eslint-plugin-mocha": "^4.8.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"fetch-mock": "^5.1.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",
|
2017-01-02 03:38:25 +03:00
|
|
|
"nodemon": "^1.11.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"nyc": "^11.0.0",
|
2017-01-14 16:26:06 +03:00
|
|
|
"proxyquire": "^1.7.10",
|
2017-05-02 08:58:17 +03:00
|
|
|
"sinon": "^3.0.0"
|
2016-10-05 17:42:02 +03:00
|
|
|
},
|
|
|
|
"babel": {
|
2017-06-26 08:56:04 +03:00
|
|
|
"sourceMaps": "inline",
|
2017-01-02 03:38:25 +03:00
|
|
|
"env": {
|
|
|
|
"test": {
|
|
|
|
"plugins": [
|
|
|
|
"istanbul"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
2016-10-05 17:42:02 +03:00
|
|
|
"presets": [
|
|
|
|
"es2015"
|
|
|
|
],
|
|
|
|
"plugins": [
|
|
|
|
"transform-runtime",
|
|
|
|
"syntax-async-functions",
|
|
|
|
[
|
|
|
|
"transform-async-to-module-method",
|
|
|
|
{
|
|
|
|
"module": "bluebird",
|
|
|
|
"method": "coroutine"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
]
|
|
|
|
},
|
2017-01-02 03:38:25 +03:00
|
|
|
"nyc": {
|
|
|
|
"reporter": [
|
|
|
|
"lcov",
|
|
|
|
"text-summary",
|
|
|
|
"html"
|
|
|
|
],
|
|
|
|
"sourceMap": false,
|
|
|
|
"instrument": false,
|
|
|
|
"cache": true
|
|
|
|
},
|
2016-10-05 17:42:02 +03:00
|
|
|
"dependencies": {
|
2017-02-06 11:26:54 +03:00
|
|
|
"aws-sdk": "^2.9.0",
|
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",
|
2017-05-02 08:58:17 +03:00
|
|
|
"debug": "^3.0.0",
|
2017-02-28 03:36:18 +03:00
|
|
|
"electron-forge-template-angular2": "^1.0.3",
|
|
|
|
"electron-forge-template-react": "^1.0.2",
|
2017-03-10 04:43:09 +03:00
|
|
|
"electron-forge-template-react-typescript": "^1.0.3",
|
2017-02-28 03:36:18 +03:00
|
|
|
"electron-forge-template-vue": "^1.0.2",
|
2017-09-10 21:20:09 +03:00
|
|
|
"electron-packager": "^9.1.0",
|
2017-07-31 08:18:30 +03:00
|
|
|
"electron-rebuild": "^1.6.0",
|
2017-04-21 05:36:19 +03:00
|
|
|
"form-data": "^2.1.4",
|
2017-05-02 08:58:17 +03:00
|
|
|
"fs-extra": "^4.0.0",
|
2017-09-17 23:05:08 +03:00
|
|
|
"github": "^11.0.0",
|
2016-12-27 06:17:51 +03:00
|
|
|
"glob": "^7.1.1",
|
2017-05-02 08:58:17 +03:00
|
|
|
"inquirer": "^3.0.1",
|
2016-12-27 06:17:09 +03:00
|
|
|
"lodash.template": "^4.4.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"log-symbols": "^2.0.0",
|
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",
|
2017-05-02 08:58:17 +03:00
|
|
|
"opn": "^5.0.0",
|
2017-02-07 12:31:39 +03:00
|
|
|
"ora": "^1.1.0",
|
2017-03-30 08:27:00 +03:00
|
|
|
"parse-author": "^2.0.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"pify": "^3.0.0",
|
2016-12-30 05:45:44 +03:00
|
|
|
"resolve-package": "^1.0.1",
|
2017-02-06 11:26:54 +03:00
|
|
|
"s3": "^4.4.0",
|
2016-10-05 17:42:02 +03:00
|
|
|
"semver": "^5.3.0",
|
2017-01-03 00:49:31 +03:00
|
|
|
"spawn-rx": "^2.0.7",
|
2017-04-03 02:07:35 +03:00
|
|
|
"sudo-prompt": "^7.0.0",
|
2016-12-31 05:25:30 +03:00
|
|
|
"tabtab": "^2.2.1",
|
2017-05-02 08:58:17 +03:00
|
|
|
"username": "^3.0.0",
|
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": {
|
2017-02-20 06:52:43 +03:00
|
|
|
"electron-installer-debian": "^0.5.0",
|
2017-04-20 20:29:45 +03:00
|
|
|
"electron-installer-dmg": "^0.2.0",
|
2017-05-02 08:58:17 +03:00
|
|
|
"electron-installer-flatpak": "^0.6.0",
|
|
|
|
"electron-installer-redhat": "^0.5.0",
|
2017-09-18 01:17:38 +03:00
|
|
|
"electron-windows-store": "^0.12.0",
|
2017-04-20 20:29:45 +03:00
|
|
|
"electron-winstaller": "^2.5.0"
|
2016-12-13 18:26:34 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">= 6.0"
|
2016-10-05 17:42:02 +03:00
|
|
|
}
|
|
|
|
}
|