This repository has been archived by the owner on Dec 5, 2022. It is now read-only.
Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
electron-api-demos/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bumps [yargs-parser](https://github.com/yargs/yargs-parser) to 21.1.1 and updates ancestor dependency [signcode](https://github.com/kevinsawicki/signcode). These dependencies need to be updated together. Updates `yargs-parser` from 13.1.1 to 21.1.1 - [Release notes](https://github.com/yargs/yargs-parser/releases) - [Changelog](https://github.com/yargs/yargs-parser/blob/main/CHANGELOG.md) - [Commits](yargs/yargs-parser@v13.1.1...yargs-parser-v21.1.1) Updates `signcode` from 0.5.0 to 1.0.0 - [Release notes](https://github.com/kevinsawicki/signcode/releases) - [Commits](kevinsawicki/signcode@v0.5.0...v1.0.0) --- updated-dependencies: - dependency-name: yargs-parser dependency-type: indirect - dependency-name: signcode dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
66 lines (66 sloc)
2.4 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "electron-api-demos", | |
"productName": "Electron API Demos", | |
"version": "2.0.2", | |
"description": "Electron interactive API demos", | |
"main": "main.js", | |
"bin": "cli.js", | |
"scripts": { | |
"start": "electron .", | |
"dev": "electron . --debug", | |
"test": "mocha && standard", | |
"generate-test-report": "mocha --reporter=json > report.json", | |
"package": "npm-run-all package:*", | |
"package:mac": "electron-packager . --overwrite --platform=darwin --arch=x64 --out=out --icon=assets/app-icon/mac/app.icns --osx-sign.identity='Developer ID Application: GitHub' --extend-info=assets/mac/info.plist", | |
"package:win": "electron-packager . --overwrite --platform=win32 --arch=ia32 --out=out --icon=assets/app-icon/win/app.ico", | |
"package:linux": "electron-packager . --overwrite --platform=linux --arch=x64 --out=out", | |
"package:sign-exe": "signcode './out/Electron API Demos-win32-ia32/Electron API Demos.exe' --cert ~/electron-api-demos.p12 --prompt --name 'Electron API Demos' --url 'http://electron.atom.io'", | |
"package:installer": "node ./script/installer.js", | |
"package:sign-installer": "signcode './out/windows-installer/ElectronAPIDemosSetup.exe' --cert ~/electron-api-demos.p12 --prompt --name 'Electron API Demos' --url 'http://electron.atom.io'", | |
"xpackage:mas": "./script/mas.sh", | |
"windows-store": "node ./script/windows-store.js", | |
"release": "node ./script/release.js", | |
"prepack": "check-for-leaks", | |
"prepush": "check-for-leaks" | |
}, | |
"repository": "https://github.com/electron/electron-api-demos", | |
"keywords": [ | |
"Electron", | |
"API", | |
"demo" | |
], | |
"author": "GitHub", | |
"license": "MIT", | |
"devDependencies": { | |
"@octokit/rest": "^16.3.2", | |
"chai": "^3.4.1", | |
"chai-as-promised": "^6.0.0", | |
"check-for-leaks": "^1.2.1", | |
"devtron": "^1.3.0", | |
"electron-packager": "^16.0.0", | |
"electron-winstaller": "^2.2.0", | |
"husky": "^0.14.3", | |
"mocha": "^5.2.0", | |
"npm-run-all": "^4.0.2", | |
"request": "^2.70.0", | |
"rimraf": "^2.5.2", | |
"signcode": "^1.0.0", | |
"spectron": "^5.0.0", | |
"standard": "^8.2.0", | |
"tap": "^14.10.6" | |
}, | |
"dependencies": { | |
"electron": "^15.5.5", | |
"electron-log": "^2.2.14", | |
"electron-settings": "^3.0.7", | |
"electron-shortcut-normalizer": "^1.0.0", | |
"glob": "^7.1.0", | |
"highlight.js": "^10.4.1", | |
"update-electron-app": "^1.1.1" | |
}, | |
"standard": { | |
"env": { | |
"mocha": true | |
} | |
} | |
} |