2016-10-05 17:42:02 +03:00
{
"name" : "electron-forge" ,
2020-06-27 20:49:38 +03:00
"version" : "6.0.0-beta.52" ,
2018-04-11 10:03:01 +03:00
"private" : true ,
2016-10-05 17:42:02 +03:00
"license" : "MIT" ,
2018-04-11 10:03:01 +03:00
"bolt" : {
"workspaces" : [
"packages/api/*" ,
"packages/installer/*" ,
"packages/maker/*" ,
"packages/publisher/*" ,
2018-05-02 10:02:25 +03:00
"packages/utils/*" ,
2019-05-24 01:26:34 +03:00
"packages/plugin/*" ,
"packages/template/*"
2018-04-11 10:03:01 +03:00
]
2016-10-05 17:42:02 +03:00
} ,
2018-04-11 10:03:01 +03:00
"scripts" : {
2018-10-24 08:24:27 +03:00
"clean" : "rimraf dist && bolt ws exec -- rimraf dist" ,
"prebuild" : "bolt clean && ts-node tools/link-ts.ts && ts-node tools/copy-shared-types.ts && tsc --project ./tsconfig.packages.json --emitDeclarationOnly && ts-node tools/copy-types.ts" ,
2018-10-22 03:47:50 +03:00
"build" : "yarn build:quick" ,
"build:quick" : "bolt ws exec -- node_modules/.bin/babel src -d dist --quiet --extensions \".ts\" --config-file ../../../.babelrc" ,
2018-04-28 06:20:03 +03:00
"postbuild" : "ts-node tools/test-dist" ,
2018-04-11 10:03:01 +03:00
"commit" : "git-cz" ,
2020-08-01 04:05:42 +03:00
"coverage:fast" : "cross-env INTEGRATION_TESTS=0 TS_NODE_FILES=true nyc mocha --parallel './tools/test-globber.ts' && nyc report --reporter=text-lcov > coverage.lcov" ,
"coverage:slow" : "cross-env TS_NODE_FILES=true nyc mocha './tools/test-globber.ts' --integration && nyc report --reporter=text-lcov > coverage.lcov" ,
2018-04-30 17:49:39 +03:00
"docs" : "bolt docs:generate && bolt docs:position" ,
"docs:generate" : "bolt ws exec -- node_modules/.bin/typedoc --out doc --excludeExternals --ignoreCompilerErrors --mode file --excludePrivate --excludeProtected --hideGenerator" ,
"docs:position" : "ts-node tools/position-docs.ts" ,
2018-07-04 05:55:41 +03:00
"docs:deploy" : "ts-node tools/sync-readmes.ts && bolt docs && ts-node tools/copy-now.ts && cd docs && now && now alias" ,
2018-07-04 07:02:10 +03:00
"docs:deploy:ci" : "ts-node tools/sync-readmes.ts && bolt docs && ts-node tools/copy-now.ts && cd docs && now --token $NOW_TOKEN && now alias --token $NOW_TOKEN" ,
2019-03-22 03:46:24 +03:00
"lint" : "eslint --ext .ts ." ,
2019-03-14 19:37:31 +03:00
"test" : "cross-env TS_NODE_FILES=true yarn run mocha './tools/test-globber.ts'" ,
2020-08-01 04:05:42 +03:00
"test:fast" : "cross-env TEST_FAST_ONLY=1 TS_NODE_FILES=true yarn run mocha --parallel './tools/test-globber.ts'" ,
2019-05-24 00:10:13 +03:00
"postinstall" : "rimraf node_modules/.bin/*.ps1 && ts-node tools/link-ts.ts"
2017-01-02 03:38:25 +03:00
} ,
2016-10-05 17:42:02 +03:00
"dependencies" : {
2020-03-06 21:16:42 +03:00
"@electron/get" : "^1.9.0" ,
2020-03-31 01:24:30 +03:00
"@malept/cross-spawn-promise" : "^1.1.0" ,
2020-08-05 20:59:01 +03:00
"@octokit/core" : "^3.1.2" ,
2020-07-17 20:53:03 +03:00
"@octokit/rest" : "^18.0.1" ,
2020-08-05 17:47:05 +03:00
"@octokit/types" : "^5.2.1" ,
2019-10-10 09:18:10 +03:00
"@types/which" : "^1.3.2" ,
2019-06-12 01:52:26 +03:00
"aws-sdk" : "^2.472.0" ,
2019-09-23 19:48:15 +03:00
"colors" : "^1.4.0" ,
2020-02-05 01:49:42 +03:00
"commander" : "^4.1.1" ,
2020-05-26 09:51:15 +03:00
"cross-spawn" : "^7.0.3" ,
2020-01-16 05:18:01 +03:00
"cross-zip" : "^3.0.0" ,
2018-11-24 07:53:22 +03:00
"debug" : "^4.1.0" ,
2020-06-12 23:53:50 +03:00
"electron-osx-sign" : "^0.4.17" ,
2020-06-27 20:02:42 +03:00
"electron-packager" : "^15.0.0" ,
2019-08-22 23:43:34 +03:00
"electron-rebuild" : "^1.8.6" ,
2019-05-29 20:30:33 +03:00
"express" : "^4.17.1" ,
2018-09-01 06:53:22 +03:00
"express-ws" : "^4.0.0" ,
2019-06-17 19:37:35 +03:00
"find-up" : "^4.1.0" ,
2019-11-21 22:41:23 +03:00
"form-data" : "3.0.0" ,
2020-06-04 10:20:57 +03:00
"fs-extra" : "^9.0.1" ,
2019-11-20 20:29:05 +03:00
"glob" : "^7.1.5" ,
2018-05-04 07:07:40 +03:00
"global" : "^4.3.2" ,
2020-03-28 00:35:04 +03:00
"html-webpack-plugin" : "^4.0.2" ,
2020-07-23 09:01:49 +03:00
"inquirer" : "^7.3.3" ,
2020-07-09 17:47:14 +03:00
"lodash" : "^4.17.19" ,
2020-04-27 09:50:25 +03:00
"log-symbols" : "^4.0.0" ,
2019-11-21 18:57:09 +03:00
"mime-types" : "^2.1.25" ,
2019-05-17 20:53:43 +03:00
"node-fetch" : "^2.6.0" ,
2016-12-28 06:39:57 +03:00
"nugget" : "^2.0.1" ,
2020-07-20 09:06:42 +03:00
"open" : "^7.1.0" ,
2020-07-20 18:40:35 +03:00
"ora" : "^4.0.5" ,
2017-03-30 08:27:00 +03:00
"parse-author" : "^2.0.0" ,
2020-05-05 09:39:26 +03:00
"pretty-ms" : "^7.0.0" ,
2016-12-30 05:45:44 +03:00
"resolve-package" : "^1.0.1" ,
2020-04-10 17:59:27 +03:00
"semver" : "^7.2.1" ,
2019-08-12 10:51:06 +03:00
"source-map-support" : "^0.5.13" ,
2019-11-20 09:59:01 +03:00
"sudo-prompt" : "^9.1.1" ,
2019-06-14 23:48:29 +03:00
"username" : "^5.1.0" ,
2020-03-03 09:00:10 +03:00
"webpack" : "^4.42.0" ,
2019-09-30 22:08:48 +03:00
"webpack-dev-middleware" : "^3.7.2" ,
2019-05-16 20:08:12 +03:00
"webpack-hot-middleware" : "^2.25.0" ,
2020-08-04 19:24:32 +03:00
"webpack-merge" : "^5.1.1" ,
2019-11-21 18:57:21 +03:00
"which" : "^2.0.2" ,
2020-07-14 08:36:58 +03:00
"xterm" : "^4.8.1" ,
2020-05-22 22:52:57 +03:00
"xterm-addon-fit" : "^0.4.0" ,
2020-05-22 22:54:36 +03:00
"xterm-addon-search" : "^0.7.0" ,
2019-08-22 03:56:25 +03:00
"yarn-or-npm" : "^3.0.1"
2016-12-03 15:50:40 +03:00
} ,
2018-04-11 10:03:01 +03:00
"devDependencies" : {
2020-06-23 20:04:52 +03:00
"@babel/cli" : "^7.10.3" ,
2020-08-05 22:05:02 +03:00
"@babel/core" : "^7.11.1" ,
2019-07-05 22:05:04 +03:00
"@babel/plugin-proposal-class-properties" : "^7.5.0" ,
2020-06-23 23:33:28 +03:00
"@babel/preset-env" : "^7.10.3" ,
2019-11-21 03:56:49 +03:00
"@babel/preset-typescript" : "^7.6.0" ,
2020-06-24 03:41:30 +03:00
"@babel/register" : "^7.10.3" ,
2020-01-16 04:58:12 +03:00
"@istanbuljs/nyc-config-typescript" : "^1.0.1" ,
2020-07-24 08:09:00 +03:00
"@types/chai" : "^4.2.12" ,
2019-08-11 21:14:56 +03:00
"@types/chai-as-promised" : "^7.1.2" ,
2019-10-08 01:14:23 +03:00
"@types/cross-spawn" : "^6.0.1" ,
2019-08-12 09:22:37 +03:00
"@types/debug" : "^4.1.5" ,
2020-07-07 10:09:32 +03:00
"@types/express" : "^4.17.7" ,
2018-05-04 10:38:18 +03:00
"@types/express-ws" : "^3.0.0" ,
2019-06-17 12:32:19 +03:00
"@types/fetch-mock" : "^7.3.1" ,
2020-05-23 00:25:36 +03:00
"@types/fs-extra" : "^9.0.1" ,
2020-07-07 10:16:59 +03:00
"@types/glob" : "^7.1.3" ,
2020-03-24 02:20:42 +03:00
"@types/html-minifier-terser" : "^5.0.0" ,
2020-07-22 06:29:20 +03:00
"@types/inquirer" : "^7.3.0" ,
2019-08-10 04:22:29 +03:00
"@types/listr" : "^0.14.2" ,
2020-08-06 08:01:37 +03:00
"@types/lodash" : "^4.14.159" ,
2018-04-28 06:20:03 +03:00
"@types/mime-types" : "^2.1.0" ,
2018-11-24 09:03:22 +03:00
"@types/minimist" : "^1.2.0" ,
2020-08-03 09:32:31 +03:00
"@types/mocha" : "^8.0.1" ,
2020-07-24 10:32:50 +03:00
"@types/node" : "^14.0.25" ,
2020-02-25 08:29:24 +03:00
"@types/node-fetch" : "^2.5.5" ,
2018-04-28 06:20:03 +03:00
"@types/proxyquire" : "^1.3.28" ,
2020-06-25 18:44:50 +03:00
"@types/semver" : "^7.3.1" ,
2020-04-01 22:01:24 +03:00
"@types/sinon" : "^9.0.0" ,
2018-11-24 09:03:22 +03:00
"@types/username" : "^3.0.0" ,
2020-07-08 08:54:00 +03:00
"@types/webpack" : "^4.41.21" ,
2020-02-26 20:47:19 +03:00
"@types/webpack-dev-middleware" : "^3.7.0" ,
2019-12-11 20:24:08 +03:00
"@types/webpack-hot-middleware" : "^2.25.0" ,
2019-04-22 09:37:30 +03:00
"@types/webpack-merge" : "^4.1.5" ,
2020-05-22 22:58:57 +03:00
"@typescript-eslint/eslint-plugin" : "^3.0.0" ,
"@typescript-eslint/parser" : "^3.0.0" ,
2020-06-09 08:41:09 +03:00
"babel-plugin-source-map-support" : "^2.1.2" ,
2018-10-22 03:47:50 +03:00
"chai" : "4.2.0" ,
2018-04-11 10:03:01 +03:00
"chai-as-promised" : "^7.0.0" ,
2020-04-10 17:57:34 +03:00
"commitizen" : "^4.0.4" ,
2020-03-06 08:28:31 +03:00
"cross-env" : "^7.0.2" ,
2020-08-04 18:38:38 +03:00
"cz-customizable" : "^6.3.0" ,
2020-06-27 04:04:28 +03:00
"electron-installer-common" : "^0.10.2" ,
2020-08-03 09:31:50 +03:00
"eslint" : "^7.6.0" ,
2020-06-16 18:04:11 +03:00
"eslint-config-airbnb-base" : "^14.2.0" ,
2020-06-10 08:42:56 +03:00
"eslint-plugin-import" : "^2.21.2" ,
2020-08-07 08:01:24 +03:00
"eslint-plugin-mocha" : "^8.0.0" ,
2020-08-03 09:32:14 +03:00
"fetch-mock" : "^9.10.6" ,
2019-06-26 08:40:32 +03:00
"generate-changelog" : "^1.8.0" ,
2020-08-01 04:05:42 +03:00
"globby" : "^11.0.1" ,
2020-04-13 18:02:36 +03:00
"husky" : "^4.2.5" ,
2020-06-19 18:32:06 +03:00
"lint-staged" : "^10.2.11" ,
2018-06-27 08:42:10 +03:00
"listr" : "^0.14.1" ,
2020-03-13 08:27:57 +03:00
"minimist" : "^1.2.5" ,
2020-08-05 17:45:13 +03:00
"mocha" : "^8.1.1" ,
2020-04-13 08:45:52 +03:00
"nodemon" : "^2.0.3" ,
2020-06-02 06:40:29 +03:00
"nyc" : "^15.1.0" ,
2019-08-13 17:37:44 +03:00
"proxyquire" : "^2.1.3" ,
2020-01-28 08:33:06 +03:00
"rimraf" : "^3.0.1" ,
2020-04-10 17:58:51 +03:00
"sinon" : "^9.0.2" ,
2020-05-29 08:40:15 +03:00
"ts-node" : "^8.10.2" ,
2020-04-27 10:42:34 +03:00
"typedoc" : "^0.17.6" ,
2020-07-17 08:06:37 +03:00
"typescript" : "^3.9.7"
2016-12-04 08:17:39 +03:00
} ,
"optionalDependencies" : {
2020-06-06 20:09:03 +03:00
"@malept/electron-installer-flatpak" : "^0.11.2" ,
2020-01-22 23:28:51 +03:00
"electron-installer-debian" : "^3.0.0" ,
2019-06-06 10:01:14 +03:00
"electron-installer-dmg" : "^3.0.0" ,
2020-07-24 18:35:04 +03:00
"electron-installer-redhat" : "^3.2.0" ,
2020-04-27 00:33:07 +03:00
"electron-installer-snap" : "^5.1.0" ,
2018-11-24 07:53:22 +03:00
"electron-windows-store" : "^2.1.0" ,
2020-07-08 08:51:28 +03:00
"electron-winstaller" : "^4.0.1" ,
2018-11-24 07:53:22 +03:00
"electron-wix-msi" : "^2.1.1"
2020-02-25 23:29:42 +03:00
} ,
"config" : {
"commitizen" : {
"path" : "./node_modules/cz-customizable"
} ,
"cz-customizable" : {
"config" : "./.cz.js"
}
} ,
"husky" : {
"hooks" : {
"pre-commit" : "lint-staged"
}
} ,
"lint-staged" : {
2020-04-26 05:56:46 +03:00
"*.ts" : "eslint --ext .ts --fix"
2020-02-25 23:29:42 +03:00
} ,
"nyc" : {
"exclude" : [
"packages/*/*/test/**/*.{js,ts}" ,
"tools/*.ts"
] ,
"extends" : "@istanbuljs/nyc-config-typescript"
2016-10-05 17:42:02 +03:00
}
}