UNPKG

electron-packager

Version:

Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI

126 lines (125 loc) 2.92 kB
{ "name": "electron-packager", "version": "14.2.1", "description": "Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI", "main": "src/index.js", "bin": { "electron-packager": "bin/electron-packager.js" }, "repository": { "type": "git", "url": "git+https://github.com/electron/electron-packager.git" }, "author": "Mark Lee", "license": "BSD-2-Clause", "bugs": { "url": "https://github.com/electron/electron-packager/issues" }, "homepage": "https://github.com/electron/electron-packager", "files": [ "collaborators.md", "bin", "docs/*.md", "NEWS.md", "src", "usage.txt" ], "dependencies": { "@electron/get": "^1.6.0", "asar": "^2.0.1", "cross-zip": "^3.0.0", "debug": "^4.0.1", "electron-notarize": "^0.2.0", "electron-osx-sign": "^0.4.11", "fs-extra": "^8.1.0", "galactus": "^0.2.1", "get-package-info": "^1.0.0", "junk": "^3.1.0", "parse-author": "^2.0.0", "plist": "^3.0.0", "rcedit": "^2.0.0", "resolve": "^1.1.6", "sanitize-filename": "^1.6.0", "semver": "^6.0.0", "yargs-parser": "^16.0.0" }, "devDependencies": { "ava": "^2.0.0", "buffer-equal": "^1.0.0", "codecov": "^3.0.0", "eslint": "^6.0.0", "eslint-config-standard": "^14.0.0", "eslint-plugin-ava": "^9.0.0", "eslint-plugin-import": "^2.2.0", "eslint-plugin-node": "^11.0.0", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "nyc": "^15.0.0", "pkg-up": "^3.0.1", "sinon": "^8.0.1" }, "engines": { "node": ">= 8.0" }, "scripts": { "ava": "ava test/index.js", "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "coverage": "nyc npm run ava", "lint": "eslint .", "test": "npm run lint && npm run coverage" }, "directories": { "test": "test" }, "keywords": [ "electron", "packager", "bundler", "app" ], "ava": { "babel": false, "compileEnhancements": false, "helpers": [ "test/config.json", "test/fixtures/**/*" ], "timeout": "60s" }, "eslintConfig": { "extends": [ "eslint:recommended", "plugin:ava/recommended", "plugin:import/errors", "plugin:import/warnings", "plugin:promise/recommended", "standard" ], "parserOptions": { "sourceType": "script" }, "plugins": [ "ava", "promise" ], "rules": { "ava/no-import-test-files": 0, "ava/no-ignored-test-files": 0, "indent": [ "error", 2, { "CallExpression": { "arguments": "first" }, "SwitchCase": 1 } ], "no-console": 0, "strict": "error" } }, "funding": { "url": "https://github.com/electron/electron-packager?sponsor=1" } }