{ "name": "winscope", "version": "0.0.0", "scripts": { "format:check": "(ls *.js .*.js && find src/ -regextype egrep -regex '^.*(\\.ts|\\.js)$') |xargs npx prettier --check", "format:fix": "(ls *.js .*.js && find src/ -regextype egrep -regex '^.*(\\.ts|\\.js)$') |xargs npx prettier --write", "eslint:check": "(ls *.js .*.js && find src/ -regextype egrep -regex '^.*(\\.ts|\\.js)$') |xargs npx eslint --format=unix", "eslint:fix": "(ls *.js .*.js && find src/ -regextype egrep -regex '^.*(\\.ts|\\.js)$') |xargs npx eslint --format=unix --fix", "tslint:check": "find src/ -regextype egrep -regex '^.*\\.ts$' |xargs npx tslint -c google.tslint.json", "tslint:fix": "find src/ -regextype egrep -regex '^.*\\.ts$' |xargs npx tslint -c google.tslint.json --fix", "deps_graph:check_cycles": "count=$(npx madge --extensions ts,js src/ --circular 2>&1 | awk '/Found.*circular dependencies/ {print $3}'); test ${count:-0} -le 10", "start": "webpack serve --config webpack.config.dev.js --open --hot --port 8080", "start:remote_tool_mock": "webpack serve --config src/test/remote_tool_mock/webpack.config.js --open --hot --port 8081", "build:kotlin_legacy": "rm -rf kotlin_build && JAVA_OPTS='-Xmx2g -Xms1g' npx kotlinc-js -source-map -source-map-embed-sources always -module-kind commonjs -output kotlin_build/flicker.js ../../../platform_testing/libraries/flicker/src/android/tools/common", "build:kotlin": "rm -rf kotlin_build && mkdir kotlin_build && JAVA_OPTS='-Xmx2g -Xms1g' npx kotlinc-js -Xir-produce-js -Xir-only -Xir-module-name=flicker -Xtyped-arrays -source-map -source-map-embed-sources always -module-kind commonjs -target v8 -libraries ./node_modules/kotlin-compiler/lib/kotlin-stdlib-js.jar -output kotlin_build/flicker.js ../../../platform_testing/libraries/flicker/src/android/tools/common/", "build:prod": "webpack --config webpack.config.prod.js --progress", "build:remote_tool_mock": "webpack --config src/test/remote_tool_mock/webpack.config.js --progress", "build:all": "npm run build:kotlin && npm run build:prod && npm run build:remote_tool_mock", "test:unit": "webpack --config webpack.config.unit_test.js && jasmine dist/unit_test/bundle.js", "test:component": "npx karma start", "test:e2e": "rm -rf dist/e2e_test && npx tsc -p ./src/test/e2e && npx protractor protractor.config.js", "test:presubmit": "npm run test:unit && npm run test:component && npm run format:check && npm run tslint:check && npm run eslint:check && npm run deps_graph:check_cycles", "test:all": "npm run test:unit && npm run test:component && npm run test:e2e && npm run format:check && npm run tslint:check && npm run eslint:check && npm run deps_graph:check_cycles" }, "private": true, "dependencies": { "@angular/animations": "^14.0.0", "@angular/cdk": "^14.2.6", "@angular/common": "^14.0.0", "@angular/compiler": "^14.0.0", "@angular/core": "^14.0.1", "@angular/elements": "^14.0.1", "@angular/forms": "^14.0.0", "@angular/material": "^14.2.6", "@angular/platform-browser": "^14.0.0", "@angular/platform-browser-dynamic": "^14.0.0", "@angular/router": "^14.0.0", "@auth0/auth0-angular": "^1.10.0", "@ngrx/effects": "^14.0.2", "@ngrx/store": "^14.0.2", "@ngxs/store": "^3.7.4", "auth0": "^3.0.1", "dateformat": "^5.0.3", "gl-matrix": "^3.4.3", "html-loader": "^3.1.0", "html-webpack-inline-source-plugin": "^1.0.0-beta.2", "html-webpack-plugin": "^5.5.0", "html2canvas": "^1.4.1", "jsbn": "^1.1.0", "jsbn-rsa": "^1.0.4", "kotlin": "^1.8.10", "kotlin-compiler": "^1.8.10", "protobufjs": "^6.11.3", "rxjs": "~7.5.0", "style-loader": "^3.3.1", "three": "^0.143.0", "ts-loader": "^9.3.0", "tslib": "^2.3.0", "typescript": "~4.7.2", "webgl-utils": "^1.0.1", "webgl-utils.js": "^1.1.0", "webpack-cli": "^4.10.0", "zone.js": "~0.11.4" }, "devDependencies": { "@angular-devkit/build-angular": "^14.0.0", "@angular/cli": "~14.0.0", "@angular/compiler-cli": "^14.0.0", "@ngxs/devtools-plugin": "^3.7.4", "@types/chrome": "^0.0.204", "@types/dateformat": "^5.0.0", "@types/jasmine": "~4.3.1", "@types/jquery": "^3.5.14", "@types/jsbn": "^1.2.30", "@types/node": "^18.0.4", "@types/three": "^0.143.0", "@types/w3c-web-usb": "^1.0.6", "@typescript-eslint/eslint-plugin": "^5.30.6", "@typescript-eslint/parser": "^5.30.6", "angular2-template-loader": "^0.6.2", "eslint": "^8.19.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-prettier": "^4.2.1", "jasmine": "~4.3.0", "jasmine-core": "~4.1.0", "karma": "~6.3.0", "karma-chrome-launcher": "~3.1.0", "karma-jasmine": "~5.0.0", "karma-sourcemap-loader": "^0.3.8", "karma-webpack": "^5.0.0", "loader-utils": "^2.0.0", "madge": "^5.0.1", "prettier": "^2.8.1", "prettier-plugin-organize-imports": "^3.2.1", "protractor": "^7.0.0", "sass": "^1.56.1", "sass-loader": "^13.1.0", "tslint": "^6.1.3", "webpack": "^5.74.0" } }