UNPKG

vrrv-installer-builder

Version:

A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box

155 lines (154 loc) 4.68 kB
{ "name": "vrrv-installer-builder", "description": "A complete solution to package and build a ready for distribution Electron app for MacOS, Windows and Linux with “auto update” support out of the box", "version": "1.0.7", "main": "out/index.js", "files": [ "out", "templates", "certs/root_certs.keychain", "nsis-auto-updater/out", "nsis-auto-updater/package.json", "nsis-auto-updater/nm" ], "bin": { "build": "./out/build-cli.js", "cleanup": "./out/cleanup.js", "install-app-deps": "./out/install-app-deps.js", "node-gyp-rebuild": "./out/node-gyp-rebuild.js" }, "scripts": { "compile": "npm run compile-production && npm run compile-updater && npm run compile-test", "compile-production": "ts-babel", "compile-test": "ts-babel test", "compile-updater": "ts-babel nsis-auto-updater", "lint": "tslint 'src/**/*.ts' 'test/src/**/*.ts' 'nsis-auto-updater/src/**/*.ts'", "pretest": "npm run compile && npm run lint && npm run pack-updater", "test": "node ./test/out/helpers/runTests.js", "test-linux": "docker run --rm -ti -v ${PWD}:/project -v ${PWD##*/}-node-modules:/project/node_modules -v ~/.electron:/root/.electron electronuserland/electron-builder:wine /test.sh", "pack-updater": "cd nsis-auto-updater && npm install --production --no-bin-links && npm prune --production && rm -rf nm && cp -a node_modules nm && cd ..", "semantic-release": "semantic-release pre && npm publish && semantic-release post", "//": "Update wiki if docs changed. Update only if functionalily are generally available (latest release, not next)", "update-wiki": "git subtree split -b wiki --prefix docs/ && git push -f wiki wiki:master", "whitespace": "whitespace 'src/**/*.ts'", "docker-images": "docker/build.sh" }, "repository": "murriouz/vrrv-builder", "engines": { "node": ">=0.4.0" }, "keywords": [ "vrrv", "electron", "builder", "build", "installer", "install", "packager", "pack", "nsis", "appdmg", "app", "dmg", "msi", "exe", "setup", "Windows", "OS X", "MacOS", "Mac" ], "author": "Stefan Judis", "license": "MIT", "bugs": "https://github.com/electron-userland/electron-builder/issues", "homepage": "https://github.com/electron-userland/electron-builder", "dependencies": { "7zip-bin": "^2.0.1", "ansi-escapes": "^1.4.0", "archiver": "^1.1.0", "archiver-utils": "^1.3.0", "asar-electron-builder": "^0.13.5", "bluebird": "^3.4.6", "chalk": "^1.1.3", "chromium-pickle-js": "^0.2.0", "cli-cursor": "^1.0.2", "cuint": "^0.2.2", "debug": "^2.2.0", "electron-download": "2.1.2", "electron-osx-sign-tf": "^1.0.0", "fs-extra-p": "^1.1.8", "hosted-git-info": "^2.1.5", "image-size": "^0.5.0", "ini": "^1.3.4", "isbinaryfile": "^3.0.1", "lodash.template": "^4.4.0", "mime": "^1.3.4", "minimatch": "^3.0.3", "normalize-package-data": "^2.3.5", "plist": "^2.0.1", "pretty-ms": "^2.1.0", "progress": "^1.1.8", "progress-stream": "^1.2.0", "read-installed": "^4.0.3", "sanitize-filename": "^1.6.1", "semver": "^5.3.0", "source-map-support": "^0.4.3", "tunnel-agent": "^0.4.3", "update-notifier": "^1.0.2", "uuid-1345": "^0.99.6", "yargs": "^6.0.0" }, "optionalDependencies": { "appdmg-tf": "0.4.9" }, "config": { "pre-git": { "commit-msg": "conventional" }, "pre-commit": [ "npm run whitespace" ] }, "devDependencies": { "@develar/semantic-release": "^6.3.6", "@types/debug": "0.0.29", "@types/mime": "0.0.29", "@types/progress": "^1.1.28", "@types/semver": "^5.3.30", "@types/source-map-support": "^0.2.28", "ava-tf": "^0.16.0", "babel-plugin-array-includes": "^2.0.3", "babel-plugin-transform-es2015-destructuring": "^6.16.0", "babel-plugin-transform-es2015-parameters": "^6.17.0", "babel-plugin-transform-es2015-spread": "^6.8.0", "decompress-zip": "^0.3.0", "diff": "^3.0.0", "json8": "^0.9.2", "path-sort": "^0.1.0", "pre-git": "^3.10.0", "ts-babel": "^1.0.12", "tslint": "^3.15.1", "typescript": "^2.0.3", "whitespace": "^2.1.0" }, "babel": { "plugins": [ "transform-es2015-parameters", "transform-es2015-spread", "transform-es2015-destructuring", "array-includes" ] }, "ava": { "verbose": true, "cache": false, "files": [ "test/out/*.js" ] }, "release": { "debug": false, "verifyConditions": [] }, "typings": "./out/electron-builder.d.ts" }