UNPKG

@sharekey/meteor-desktop

Version:

Build a Meteor's desktop client with hot code push.

132 lines (131 loc) 4.25 kB
{ "name": "@sharekey/meteor-desktop", "version": "2.6.3", "bin": { "meteor-desktop": "dist/bin/cli.js" }, "engines": { "node": ">=4.0.0" }, "description": "Build a Meteor's desktop client with hot code push.", "main": "dist/index.js", "scripts": { "test": "cross-env NODE_ENV=test nyc mocha -t 10000 -r ./tests/helpers/clear.js \"tests/+(unit|functional)/**/*.test.js\"", "test-integration": "mocha -t 10000 -r reify \"tests/+(integration)/**/*.test.js\"", "test-watch": "mocha -r ./tests/helpers/clear.js --compilers js:@babel/register \"tests/+(unit|functional)/**/*.test.js\" --watch", "lint": "eslint lib plugins scaffold skeleton tests", "prepare-integration-tests": "node tests/integration/prepare.js", "coverage-html": "nyc report --reporter=lcov", "coverage": "nyc report --reporter=text-lcov | coveralls", "report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov", "version": "node dist/scripts/propagateVersion.js && git add plugins", "postinstall": "node dist/scripts/addToScripts || echo", "publish-plugins": "(cls || reset) && cd plugins/bundler && (meteor publish --release=METEOR@2.6) && cd ../watcher && (meteor publish --release=METEOR@2.6)", "prepublish": "npm run build || echo", "publish-all": "npm run publish-plugins && npm publish", "build": "babel lib --out-dir dist --source-maps inline --copy-files", "build-watch": "babel lib --watch --out-dir dist --source-maps inline --copy-files", "develop": "npm-run-all --parallel build-watch test-watch", "generate-docs": "jsdoc2md skeleton/preload.js > docs/api/desktop.md && jsdoc2md skeleton/modules/module.js > docs/api/module.md", "update-locks": "(rmdir /S /Q node_modules || rm -rf node_modules || echo) && yarn && (rmdir /S /Q node_modules || rm -rf node_modules) && npm i" }, "author": "Sharekey <admin@sharekey.com>", "license": "MIT", "devDependencies": { "@babel/cli": "7.21.0", "@babel/register": "7.21.0", "axios": "^1.4.0", "babel-plugin-istanbul": "^5.2.0", "chai": "3.5.0", "chai-as-promised": "6.0.0", "codecov": "1.0.1", "connect": "3.7.0", "connect-modrewrite": "0.10.2", "coveralls": "3.0.5", "cross-env": "3.2.4", "dirty-chai": "1.2.2", "eslint": "4.19.1", "eslint-config-airbnb-base": "12.1.0", "eslint-plugin-import": "2.27.5", "find-port": "2.0.1", "fs-extra": "4.0.3", "fs-plus": "2.10.1", "import-fresh": "2.0.0", "jsdoc-to-markdown": "5.0.3", "mime": "2.6.0", "mocha": "2.5.3", "mockery": "2.1.0", "npm-run-all": "4.0.1", "nyc": "15.0.0", "proxyquire": "1.8.0", "queue": "6.0.1", "reify": "0.20.12", "rewire": "3.0.2", "run-sequence": "1.2.2", "semistandard": "^16.0.1", "send": "0.18.0", "serve-static": "1.13.2", "server-destroy": "1.0.1", "sha1-file": "1.0.4", "sinon": "2.4.1", "sinon-chai": "2.14.0", "spectron": "8.0.0", "temp-dir": "2.0.0", "watch": "1.0.2" }, "dependencies": { "@babel/core": "7.18.13", "@babel/preset-env": "7.13.8", "@babel/runtime": "7.18.9", "@electron/asar": "3.2.3", "cacache": "17.0.5", "commander": "2.20.3", "cross-spawn": "5.0.1", "del": "2.2.2", "install-local": "0.6.2", "isbinaryfile": "3.0.3", "lodash": "4.17.21", "md5": "2.2.1", "node-fetch": "2.6.9", "regenerator-runtime": "0.12.1", "rimraf": "2.6.3", "semver": "5.7.2", "shelljs": "0.8.5", "single-line-log": "1.1.2", "terser": "4.8.1" }, "peerDependencies": { "app-builder-lib": "*", "electron-builder": "*", "electron-packager": "*" }, "repository": { "type": "git", "url": "https://github.com/sharekey/meteor-desktop" }, "keywords": [ "electron", "meteor", "packager", "desktop" ], "nyc": { "exclude": [ ".reify-cache", "dist", "node_modules", "plugins", "tests", "scaffold", "lib", "devEnvSetup.js" ], "require": [ "@babel/register" ], "sourceMap": false, "instrument": false, "all": true }, "homepage": "https://github.com/sharekey/meteor-desktop" }