UNPKG

@openfin/automation-cli

Version:

CLI for running automation tests within the OpenFin ecosystem

82 lines (81 loc) 2.25 kB
{ "name": "@openfin/automation-cli", "version": "1.3.1", "description": "CLI for running automation tests within the OpenFin ecosystem", "author": "martyn.janes@openfin.co", "license": "SEE LICENSE IN LICENSE.MD", "keywords": [ "openfin", "test", "automation", "cli" ], "scripts": { "build-clean": "rimraf --glob ./es/* ./types/*", "build-lint": "eslint src", "build-compile": "tsc", "build-p": "run-p build-lint build-compile --aggregate-output", "build": "run-s build-clean build-p", "format": "prettier --config .prettierrc src/**/* --write", "package-clean": "rimraf --glob ./dist/*", "package-cjs": "rollup --config rollup.config.js --bundleConfigAsCjs", "package": "run-s package-clean package-cjs", "docs": "typedoc --tsconfig ./tsconfig.json --readme none --disableSources ./src/index.ts", "dist-clean": "rimraf --glob ./es", "dist": "run-s format build package docs dist-clean" }, "dependencies": { "@openfin/automation-helpers": "1.3.1", "chalk": "4.1.2", "commander": "12.1.0", "glob": "11.0.0", "jszip": "3.10.1", "xml2js": "0.6.2" }, "devDependencies": { "@rollup/plugin-commonjs": "28.0.1", "@rollup/plugin-node-resolve": "15.3.0", "@rollup/plugin-terser": "0.4.4", "@types/glob": "8.1.0", "@types/jasmine": "5.1.4", "@types/mocha": "10.0.9", "@types/node": "22.8.1", "@types/xml2js": "0.4.14", "@typescript-eslint/eslint-plugin": "8.11.0", "@typescript-eslint/parser": "8.11.0", "eslint": "9.13.0", "eslint-plugin-header": "3.1.1", "eslint-plugin-import": "2.31.0", "eslint-plugin-jsdoc": "50.4.3", "eslint-plugin-promise": "7.1.0", "eslint-plugin-simple-import-sort": "12.1.1", "eslint-plugin-unicorn": "56.0.0", "eslint-plugin-unused-imports": "4.1.4", "npm-run-all": "4.1.5", "prettier": "3.3.3", "rimraf": "6.0.1", "rollup": "4.24.3", "typedoc": "0.26.10", "typescript": "5.6.3" }, "peerDependencies": { "jasmine": "5.x", "jasmine-spec-reporter": "7.x", "jest": "29.x", "jest-environment-node": "29.x", "mocha": "10.x", "ts-jest": "29.x", "ts-node": "10.x", "webdriver": "8.x" }, "bin": { "of-automation": "bin/index.js" }, "files": [ "bin", "dist", "CHANGELOG.md", "LICENSE.md", "README.md" ] }