2016-10-05 17:42:02 +03:00
{
"name" : "electron-forge" ,
2020-02-25 23:32:52 +03:00
"version" : "6.0.0-beta.50" ,
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" ,
2019-12-02 11:00:10 +03:00
"codecov" : "nyc report --reporter=text-lcov | codecov --disable=gcov --pipe --env=CI_OS,NODE_INSTALLER" ,
2019-09-02 03:21:22 +03:00
"coverage" : "cross-env TS_NODE_FILES=true nyc mocha './tools/test-globber.ts'" ,
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'" ,
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-02-13 00:51:37 +03:00
"@electron/get" : "^1.7.6" ,
2020-02-17 02:59:50 +03:00
"@malept/cross-spawn-promise" : "^1.0.0" ,
2020-02-06 21:55:07 +03:00
"@octokit/rest" : "^16.43.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" ,
2019-10-09 02:39:41 +03:00
"cross-spawn" : "^7.0.1" ,
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" ,
2019-12-02 09:59:55 +03:00
"electron-osx-sign" : "^0.4.15" ,
2020-01-16 00:23:25 +03:00
"electron-packager" : "^14.2.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" ,
2019-06-28 22:29:53 +03:00
"fs-extra" : "^8.1.0" ,
2019-11-20 20:29:05 +03:00
"glob" : "^7.1.5" ,
2018-05-04 07:07:40 +03:00
"global" : "^4.3.2" ,
2018-05-15 02:59:45 +03:00
"html-webpack-plugin" : "^3.2.0" ,
2020-03-03 04:16:11 +03:00
"inquirer" : "^7.0.5" ,
2020-02-04 00:09:31 +03:00
"lodash" : "^4.17.15" ,
2019-05-23 23:19:53 +03:00
"log-symbols" : "^3.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-01-31 05:00:35 +03:00
"open" : "^7.0.1" ,
2019-11-21 18:56:55 +03:00
"ora" : "^4.0.3" ,
2017-03-30 08:27:00 +03:00
"parse-author" : "^2.0.0" ,
2020-03-03 09:01:43 +03:00
"pretty-ms" : "^6.0.1" ,
2016-12-30 05:45:44 +03:00
"resolve-package" : "^1.0.1" ,
2020-02-13 00:52:26 +03:00
"semver" : "^7.1.3" ,
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" ,
2019-08-28 20:37:26 +03:00
"webpack-merge" : "^4.2.2" ,
2019-11-21 18:57:21 +03:00
"which" : "^2.0.2" ,
2020-02-05 21:44:49 +03:00
"xterm" : "^4.4.0" ,
2020-01-09 23:40:32 +03:00
"xterm-addon-fit" : "^0.3.0" ,
2020-02-11 09:11:47 +03:00
"xterm-addon-search" : "^0.5.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" : {
2019-10-11 22:42:13 +03:00
"@babel/cli" : "^7.6.4" ,
2019-10-11 22:40:25 +03:00
"@babel/core" : "^7.6.4" ,
2019-07-05 22:05:04 +03:00
"@babel/plugin-proposal-class-properties" : "^7.5.0" ,
2019-10-09 08:50:57 +03:00
"@babel/preset-env" : "^7.6.3" ,
2019-11-21 03:56:49 +03:00
"@babel/preset-typescript" : "^7.6.0" ,
2019-09-09 08:45:43 +03:00
"@babel/register" : "^7.6.0" ,
2020-01-16 04:58:12 +03:00
"@istanbuljs/nyc-config-typescript" : "^1.0.1" ,
2020-03-03 08:32:44 +03:00
"@types/chai" : "^4.2.10" ,
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" ,
2019-06-26 20:18:51 +03:00
"@types/electron-packager" : "^14.0.0" ,
2020-03-04 20:13:49 +03:00
"@types/express" : "^4.17.3" ,
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-02-18 08:29:32 +03:00
"@types/fs-extra" : "^8.1.0" ,
2018-10-22 03:47:50 +03:00
"@types/glob" : "7.1.1" ,
2019-07-15 09:04:15 +03:00
"@types/html-webpack-plugin" : "^3.2.1" ,
2019-08-11 21:15:36 +03:00
"@types/inquirer" : "^6.5.0" ,
2019-08-10 04:22:29 +03:00
"@types/listr" : "^0.14.2" ,
2020-02-04 00:09:31 +03:00
"@types/lodash" : "^4.14.149" ,
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-03-04 08:29:09 +03:00
"@types/mocha" : "^7.0.2" ,
2020-03-02 08:48:02 +03:00
"@types/node" : "^13.7.7" ,
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-01-29 20:43:40 +03:00
"@types/semver" : "^7.1.0" ,
2019-11-21 08:30:25 +03:00
"@types/sinon" : "^7.5.1" ,
2018-11-24 09:03:22 +03:00
"@types/username" : "^3.0.0" ,
2020-02-28 22:14:53 +03:00
"@types/webpack" : "^4.41.7" ,
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" ,
2019-10-09 02:41:48 +03:00
"@typescript-eslint/eslint-plugin" : "^2.3.3" ,
2019-10-08 08:59:31 +03:00
"@typescript-eslint/parser" : "^2.3.3" ,
2019-05-23 23:19:53 +03:00
"asar" : "^2.0.1" ,
2019-07-12 09:22:25 +03:00
"babel-plugin-source-map-support" : "^2.1.1" ,
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" ,
2019-09-23 08:38:33 +03:00
"codecov" : "^3.6.1" ,
2020-01-16 04:43:52 +03:00
"commitizen" : "^4.0.3" ,
2020-03-04 08:29:49 +03:00
"cross-env" : "^7.0.1" ,
2019-05-14 09:52:42 +03:00
"cz-customizable" : "^6.2.0" ,
2020-01-15 22:00:10 +03:00
"eslint" : "^6.8.0" ,
2019-08-26 18:12:22 +03:00
"eslint-config-airbnb-base" : "^14.0.0" ,
2019-07-22 10:46:48 +03:00
"eslint-plugin-import" : "^2.18.2" ,
2020-02-20 08:30:00 +03:00
"eslint-plugin-mocha" : "^6.3.0" ,
2020-03-04 20:15:30 +03:00
"fetch-mock" : "^9.1.0" ,
2019-06-26 08:40:32 +03:00
"generate-changelog" : "^1.8.0" ,
2020-02-25 23:29:42 +03:00
"husky" : "^4.2.3" ,
"lint-staged" : "^10.0.8" ,
2018-06-27 08:42:10 +03:00
"listr" : "^0.14.1" ,
2018-11-24 09:03:22 +03:00
"minimist" : "^1.2.0" ,
2020-02-27 08:52:00 +03:00
"mocha" : "^7.1.0" ,
2019-12-12 08:29:15 +03:00
"nodemon" : "^2.0.2" ,
2020-01-16 04:58:12 +03:00
"nyc" : "^15.0.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-02-20 09:03:02 +03:00
"sinon" : "^9.0.0" ,
2020-01-15 22:25:22 +03:00
"ts-node" : "^8.6.1" ,
2020-02-28 19:28:19 +03:00
"typedoc" : "^0.16.11" ,
2020-03-02 08:46:36 +03:00
"typescript" : "^3.8.3"
2016-12-04 08:17:39 +03:00
} ,
"optionalDependencies" : {
2020-01-16 04:43:52 +03:00
"@malept/electron-installer-flatpak" : "^0.11.0" ,
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-01-22 23:31:02 +03:00
"electron-installer-redhat" : "^3.0.0" ,
2020-01-22 01:25:13 +03:00
"electron-installer-snap" : "^5.0.0" ,
2018-11-24 07:53:22 +03:00
"electron-windows-store" : "^2.1.0" ,
2019-07-25 19:25:32 +03:00
"electron-winstaller" : "^4.0.0" ,
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" : {
"*.ts" : "yarn lint --fix"
} ,
"nyc" : {
"exclude" : [
"packages/*/*/test/**/*.{js,ts}" ,
"tools/*.ts"
] ,
"extends" : "@istanbuljs/nyc-config-typescript"
2016-10-05 17:42:02 +03:00
}
}