forge/package.json

176 строки
6.0 KiB
JSON
Исходник Обычный вид История

2016-10-05 17:42:02 +03:00
{
"name": "electron-forge",
2022-01-10 10:42:42 +03:00
"version": "6.0.0-beta.63",
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"private": true,
2016-10-05 17:42:02 +03:00
"license": "MIT",
"engines": {
"node": ">= 12.13.0"
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"bolt": {
"workspaces": [
"packages/api/*",
"packages/installer/*",
"packages/maker/*",
"packages/publisher/*",
"packages/utils/*",
2019-05-24 01:26:34 +03:00
"packages/plugin/*",
"packages/template/*"
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
]
2016-10-05 17:42:02 +03:00
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"scripts": {
"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",
2022-02-27 11:19:44 +03:00
"build:quick": "bolt ws exec -- swc src --out-dir dist --quiet --extensions \".ts\" --config-file ../../../.swcrc",
"postbuild": "ts-node tools/test-dist",
"coverage:fast": "xvfb-maybe cross-env INTEGRATION_TESTS=0 TS_NODE_FILES=true nyc mocha './tools/test-globber.ts' && nyc report --reporter=text-lcov > coverage.lcov",
"coverage:slow": "xvfb-maybe cross-env TS_NODE_FILES=true nyc mocha './tools/test-globber.ts' --integration && nyc report --reporter=text-lcov > coverage.lcov",
"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",
"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",
"lint": "prettier --check . && eslint .",
"test": "xvfb-maybe cross-env TS_NODE_FILES=true mocha './tools/test-globber.ts'",
"test:fast": "xvfb-maybe cross-env TEST_FAST_ONLY=1 TS_NODE_FILES=true 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"
},
2016-10-05 17:42:02 +03:00
"dependencies": {
"@aws-sdk/abort-controller": "^3.29.0",
"@aws-sdk/client-s3": "^3.28.0",
"@aws-sdk/lib-storage": "^3.28.0",
"@aws-sdk/types": "^3.25.0",
"@doyensec/electronegativity": "^1.9.1",
"@electron/get": "^1.9.0",
"@malept/cross-spawn-promise": "^2.0.0",
"@octokit/core": "^3.2.4",
"@octokit/plugin-retry": "^3.0.9",
"@octokit/rest": "^18.0.11",
"@octokit/types": "^6.1.2",
"chalk": "^4.0.0",
"commander": "^4.1.1",
"cross-spawn": "^7.0.3",
"cross-zip": "^4.0.0",
"debug": "^4.3.1",
"electron-osx-sign": "^0.5.0",
"electron-packager": "^15.4.0",
"electron-rebuild": "^3.2.6",
"express": "^4.17.1",
"express-ws": "^5.0.2",
"fast-glob": "^3.2.7",
"find-up": "^5.0.0",
"form-data": "^4.0.0",
"fs-extra": "^10.0.0",
"global": "^4.3.2",
"html-webpack-plugin": "^5.3.1",
"inquirer": "^8.0.0",
"lodash": "^4.17.20",
"log-symbols": "^4.0.0",
"mime-types": "^2.1.25",
"node-fetch": "^2.6.7",
"nugget": "^2.0.1",
"open": "^8.1.0",
2020-08-09 19:30:09 +03:00
"ora": "^5.0.0",
"parse-author": "^2.0.0",
"pretty-ms": "^7.0.0",
"resolve-package": "^1.0.1",
"semver": "^7.2.1",
"source-map-support": "^0.5.13",
"sudo-prompt": "^9.1.1",
"username": "^5.1.0",
"webpack": "^5.69.1",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.7.3",
"which": "^2.0.2",
"xterm": "^4.9.0",
"xterm-addon-fit": "^0.5.0",
"xterm-addon-search": "^0.8.0",
"yarn-or-npm": "^3.0.1"
},
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@malept/eslint-config": "^2.0.0",
2022-02-27 11:19:44 +03:00
"@swc/cli": "^0.1.49",
"@swc/core": "^1.2.87",
"@swc/register": "^0.1.7",
"@types/chai": "^4.2.12",
"@types/chai-as-promised": "^7.1.2",
"@types/cross-spawn": "^6.0.1",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.9",
"@types/express-ws": "^3.0.0",
"@types/fetch-mock": "^7.3.1",
"@types/fs-extra": "^9.0.6",
"@types/inquirer": "^8.1.1",
"@types/listr": "^0.14.2",
"@types/lodash": "^4.14.166",
"@types/mime-types": "^2.1.0",
"@types/minimist": "^1.2.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.25",
"@types/node-fetch": "^2.5.5",
"@types/proxyquire": "^1.3.28",
"@types/semver": "^7.3.4",
"@types/sinon": "^10.0.0",
"@types/sinon-chai": "^3.2.5",
"@types/which": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"chai": "^4.3.3",
feat(core): V6 API (#433) * temp * Start working in new package structure * Example maker * All makers implemented and tests passing on darwin * Add v6 branches to travis config * Add v6 branches to appveyor config * Gitignore _old * Remove FIXME comments * Remove from CI branch whitelist * Install bolt on docker * Add to whitelist * Fix bolt usage on CI * Run bolt build on CI * Fix tests on CI * Fix linting * Fix CI * Make publishers work and add specs * Docs template * Initial docs * update plugin interface to support resolving strings * more docs * add deps and scripts * send makeResults instead of flatten artifacts list * feat(publisher): Allow to configure channel for ERS (#456) * fix(publisher): call resolve() when electron-release-server publisher succeeds (#465) ISSUES CLOSED: #460 * Fix publisher tests * Remove stray console statement * v6-api is a PR now, no need to explicitly add to CI * Add top level license * Change Maker/Publisher syntax so that they can be constructed with a config variable * Fix custom init * Allow absolute paths to custom modules * Update to new @electron-forge/ scope * Add missing semi * Use absolute path for custom init to avoid runnig npm link on windows * Fix appx test reference to fixture key file * Remove shell completion support (#447) tabtab is rather buggy and the alternative, commander-completion, needs a custom completion script to be written and maintained. * install new beta tagged bolt on CI * Fix testing snap building in Travis * fix remove error * Fix config passing in tests * fix search order
2018-04-11 10:03:01 +03:00
"chai-as-promised": "^7.0.0",
"cross-env": "^7.0.2",
"electron-installer-common": "^0.10.2",
"eslint": "^8.0.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-mocha": "^9.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"fetch-mock": "^9.10.7",
"generate-changelog": "^1.8.0",
"husky": "^7.0.1",
"lint-staged": "^12.1.7",
"listr2": "^4.0.4",
"minimist": "^1.2.6",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"prettier": "^2.4.0",
"proxyquire": "^2.1.3",
"rimraf": "^3.0.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.6.0",
"ts-node": "^10.0.0",
"typedoc": "^0.22.0",
"typescript": "^4.5.4",
"xvfb-maybe": "^0.2.1"
},
"optionalDependencies": {
"@malept/electron-installer-flatpak": "^0.11.2",
"electron-installer-debian": "^3.0.0",
"electron-installer-dmg": "^4.0.0",
"electron-installer-redhat": "^3.2.0",
"electron-installer-snap": "^5.1.0",
2018-11-24 07:53:22 +03:00
"electron-windows-store": "^2.1.0",
"electron-winstaller": "^5.0.0",
"electron-wix-msi": "^3.0.6"
},
"lint-staged": {
"*.{html,json,md,yml}": "prettier --write",
"*.{js,ts}": "eslint --fix"
},
"nyc": {
"exclude": [
"packages/*/*/test/**/*.{js,ts}",
"tools/*.ts"
],
"extends": "@istanbuljs/nyc-config-typescript"
},
"prettier": {
"singleQuote": true
},
"volta": {
"node": "12.22.4"
2016-10-05 17:42:02 +03:00
}
}