|
|
@ -20,21 +20,15 @@
|
|
|
|
"start-multi2": "cross-env NODE_APP_INSTANCE=2 electron .",
|
|
|
|
"start-multi2": "cross-env NODE_APP_INSTANCE=2 electron .",
|
|
|
|
"start-prod": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod LOKI_DEV=1 electron .",
|
|
|
|
"start-prod": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod LOKI_DEV=1 electron .",
|
|
|
|
"start-prod-multi": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod1 LOKI_DEV=1 electron .",
|
|
|
|
"start-prod-multi": "cross-env NODE_ENV=production NODE_APP_INSTANCE=devprod1 LOKI_DEV=1 electron .",
|
|
|
|
"start-swarm-test": "cross-env NODE_ENV=swarm-testing NODE_APP_INSTANCE=test1 LOKI_DEV=1 electron .",
|
|
|
|
"start-swarm-test": "cross-env NODE_ENV=swarm-testing NODE_APP_INSTANCE=1 LOKI_DEV=1 electron .",
|
|
|
|
"start-swarm-test-2": "cross-env NODE_ENV=swarm-testing2 NODE_APP_INSTANCE=test2 LOKI_DEV=1 electron .",
|
|
|
|
"start-swarm-test-2": "cross-env NODE_ENV=swarm-testing NODE_APP_INSTANCE=2 LOKI_DEV=1 electron .",
|
|
|
|
"grunt": "grunt",
|
|
|
|
"grunt": "grunt",
|
|
|
|
"icon-gen": "electron-icon-maker --input=images/icon_1024.png --output=./build",
|
|
|
|
"icon-gen": "electron-icon-maker --input=images/icon_1024.png --output=./build",
|
|
|
|
"generate": "yarn icon-gen && yarn grunt",
|
|
|
|
"generate": "yarn icon-gen && yarn grunt",
|
|
|
|
"build": "electron-builder --config.extraMetadata.environment=$SIGNAL_ENV",
|
|
|
|
|
|
|
|
"build-release": "cross-env SIGNAL_ENV=production npm run build -- --config.directories.output=release",
|
|
|
|
|
|
|
|
"make:linux:x64:appimage": "electron-builder build --linux appimage --x64",
|
|
|
|
|
|
|
|
"build-module-protobuf": "pbjs --target static-module --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
|
|
"build-module-protobuf": "pbjs --target static-module --wrap commonjs --out ts/protobuf/compiled.js protos/*.proto && pbts --out ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
|
|
"clean-module-protobuf": "rm -f ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
|
|
"clean-module-protobuf": "rm -f ts/protobuf/compiled.d.ts ts/protobuf/compiled.js",
|
|
|
|
"build-protobuf": "yarn build-module-protobuf",
|
|
|
|
"build-protobuf": "yarn build-module-protobuf",
|
|
|
|
"clean-protobuf": "yarn clean-module-protobuf",
|
|
|
|
"clean-protobuf": "yarn clean-module-protobuf",
|
|
|
|
"prepare-beta-build": "node prepare_beta_build.js",
|
|
|
|
|
|
|
|
"prepare-import-build": "node prepare_import_build.js",
|
|
|
|
|
|
|
|
"publish-to-apt": "NAME=$npm_package_name VERSION=$npm_package_version ./aptly.sh",
|
|
|
|
|
|
|
|
"test": "yarn test-node && yarn test-electron",
|
|
|
|
"test": "yarn test-node && yarn test-electron",
|
|
|
|
"test-view": "NODE_ENV=test yarn run start",
|
|
|
|
"test-view": "NODE_ENV=test yarn run start",
|
|
|
|
"test-lib-view": "NODE_ENV=test-lib yarn run start",
|
|
|
|
"test-lib-view": "NODE_ENV=test-lib yarn run start",
|
|
|
@ -42,24 +36,20 @@
|
|
|
|
"test-electron": "yarn grunt test",
|
|
|
|
"test-electron": "yarn grunt test",
|
|
|
|
"test-integration-session": "ELECTRON_DISABLE_SANDBOX=1 mocha --exit --timeout 5000 integration_test/integration_test.js",
|
|
|
|
"test-integration-session": "ELECTRON_DISABLE_SANDBOX=1 mocha --exit --timeout 5000 integration_test/integration_test.js",
|
|
|
|
"test-node": "mocha --recursive --exit test/app test/modules ts/test libloki/test/node",
|
|
|
|
"test-node": "mocha --recursive --exit test/app test/modules ts/test libloki/test/node",
|
|
|
|
"test-node-coverage": "nyc --reporter=lcov --reporter=text mocha --recursive test/app test/modules ts/test libloki/test/node",
|
|
|
|
|
|
|
|
"test-node-coverage-html": "nyc --reporter=lcov --reporter=html mocha --recursive test/a/* */pp test/modules ts/test libloki/test/node",
|
|
|
|
|
|
|
|
"eslint": "eslint --cache .",
|
|
|
|
"eslint": "eslint --cache .",
|
|
|
|
"eslint-fix": "eslint --fix .",
|
|
|
|
"eslint-fix": "eslint --fix .",
|
|
|
|
"eslint-full": "eslint .",
|
|
|
|
"eslint-full": "eslint .",
|
|
|
|
"lint": "yarn format --list-different && yarn lint-windows",
|
|
|
|
"lint": "yarn format && yarn lint-files",
|
|
|
|
"lint-full": "yarn format-full --list-different; yarn lint-windows-full",
|
|
|
|
"lint-full": "yarn format-full && yarn lint-files-full",
|
|
|
|
"dev-lint": "yarn format --list-different; yarn lint-windows",
|
|
|
|
"dev-lint": "yarn format && yarn lint-files",
|
|
|
|
"lint-windows": "yarn eslint && yarn tslint",
|
|
|
|
"lint-files": "yarn eslint && yarn tslint",
|
|
|
|
"lint-windows-full": "yarn eslint-full && yarn tslint",
|
|
|
|
"lint-files-full": "yarn eslint-full && yarn tslint",
|
|
|
|
"lint-deps": "node ts/util/lint/linter.js",
|
|
|
|
"lint-deps": "node ts/util/lint/linter.js",
|
|
|
|
"tslint": "tslint --format stylish --project .",
|
|
|
|
"tslint": "tslint --format stylish --project .",
|
|
|
|
"format": "prettier --write `git ls-files --modified *.{css,js,json,md,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,md,scss,ts,tsx}`",
|
|
|
|
"format": "prettier --list-different --write `git ls-files --modified *.{css,js,json,md,scss,ts,tsx}` `git ls-files --modified ./**/*.{css,js,json,md,scss,ts,tsx}`",
|
|
|
|
"format-full": "prettier --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"",
|
|
|
|
"format-full": "prettier --list-different --write \"*.{css,js,json,md,scss,ts,tsx}\" \"./**/*.{css,js,json,md,scss,ts,tsx}\"",
|
|
|
|
"transpile": "tsc",
|
|
|
|
"transpile": "tsc",
|
|
|
|
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js",
|
|
|
|
"clean-transpile": "rimraf ts/**/*.js && rimraf ts/*.js",
|
|
|
|
"open-coverage": "open coverage/lcov-report/index.html",
|
|
|
|
|
|
|
|
"styleguide": "styleguidist server",
|
|
|
|
|
|
|
|
"pow-metrics": "node metrics_app.js localhost 9000",
|
|
|
|
"pow-metrics": "node metrics_app.js localhost 9000",
|
|
|
|
"ready": "yarn clean-transpile && yarn grunt && yarn lint-full && yarn test-node && yarn test-electron && yarn lint-deps"
|
|
|
|
"ready": "yarn clean-transpile && yarn grunt && yarn lint-full && yarn test-node && yarn test-electron && yarn lint-deps"
|
|
|
|
},
|
|
|
|
},
|
|
|
|