UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

156 lines 5.14 kB
{ "name": "@broadcom/ca7-for-zowe-cli", "version": "3.0.0", "description": "CA 7 Workload Automation Plug-in for Zowe CLI", "author": "Broadcom", "license": "SEE LICENSE IN LICENSE", "repository": "", "keywords": [ "ca7", "CLI", "CA", "Broadcom", "Mainframe", "brightside", "zowe", "zowe-cli", "plugin" ], "files": [ "lib" ], "publishConfig": { "registry": "https://registry.npmjs.org/" }, "scripts": { "build:source": "tsc --pretty", "build": "node scripts/updateLicense.js && tsc --pretty && npm run checkTestsCompile && madge -c lib", "checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ", "previousbuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version", "prebuild": "npm run clean && echo Using TypeScript && tsc --version", "clean": "rimraf lib", "watch": "tsc --pretty --watch", "prepublishOnly": "echo Look up for the output of prepublishOnly", "lint": "node -v && npm -v && eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"", "lint:fix": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\" --fix", "lint:src": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"", "lint:tests": "eslint \"**/__tests__/**/*.ts\"", "test": "npm run test:unit && npm run test:integration && npm run test:system", "test:unitCA7": "jest --coverage ./__unit__/*/.*", "test:cli": "jest --coverage ./__unit__/cli/*/.*", "test:api": "jest --coverage ./__unit__/api/*/.*", "test:sysCmd": "jest .*/__system__/AllTest/commands_system.*", "test:sysJobDef": "jest .*/__system__/AllTest/jobDefinitions_system.*", "test:sysDS": "jest .*/__system__/AllTest/datasets_system.*", "test:sysJobInstances": "jest .*/__system__/AllTest/jobInstances_system.*", "test:sysJobHis": "jest .*/__system__/AllTest/jobHistory_system.*", "test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false", "test:integration": "env-cmd __tests__/__resources__/env/integration.env jest .*/__integration__/.* --coverage false", "test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__|__integration__/.*\"", "installPlugin": "npm install && npm run clean && npm run build && zowe plugins install ." }, "imperative": { "configurationModule": "lib/imperative.js" }, "peerDependencies": { "@zowe/imperative": "^8.2.0" }, "devDependencies": { "@eslint/js": "^9.18.0", "@types/fs-extra": "^8.1.2", "@types/jest": "^29.5.14", "@types/node": "^18.17.1", "@types/yargs": "^13.0.2", "@typescript-eslint/eslint-plugin": "^5.59.5", "@typescript-eslint/parser": "^5.59.5", "@zowe/cli": "^8.24.5", "@zowe/cli-test-utils": "^8.3.0", "@zowe/imperative": "^8.24.5", "env-cmd": "^8.0.2", "eslint": "^8.57.1", "eslint-plugin-jest": "^27.2.1", "eslint-plugin-license-header": "^0.6.0", "eslint-plugin-react": "^7.37.4", "eslint-plugin-unused-imports": "^2.0.0", "fs-extra": "^8.1.0", "globals": "^15.14.0", "jest": "^29.7.0", "jest-cli": "^29.7.0", "jest-environment-node": "^29.7.0", "jest-environment-node-debug": "^2.0.0", "jest-html-reporter": "^3.7.0", "jest-junit": "^16.0.0", "jest-stare": "^2.5.0", "madge": "^6.1.0", "rimraf": "^2.7.1", "ts-jest": "^29.0.0", "ts-node": "^7.0.1", "typedoc": "^0.26.11", "typescript": "^4.9.5", "typescript-eslint": "^8.20.0", "uuid": "^9.0.1" }, "extensionDependencies": [ "zowe.vscode-extension-for-zowe" ], "jest": { "modulePathIgnorePatterns": [ "__tests__/__snapshots__/" ], "watchPathIgnorePatterns": [ ".*jest-stare.*\\.js" ], "testResultsProcessor": "jest-stare", "transform": { ".(ts)": "ts-jest" }, "testRegex": "(test|spec)\\.ts$", "moduleFileExtensions": [ "ts", "js" ], "testPathIgnorePatterns": [ "<rootDir>/__tests__/__results__" ], "reporters": [ "default", "jest-junit", "jest-stare" ], "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts", "!**/__tests__/**", "!**/index.ts", "!**/main.ts" ], "collectCoverage": false, "coverageReporters": [ "json", "lcov", "text", "cobertura", "html" ], "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage" }, "jest-stare": { "resultDir": "./__tests__/__results__/unit/jest-stare", "additionalResultsProcessors": [ "jest-junit", "jest-html-reporter" ], "coverageLink": "../coverage/lcov-report/index.html" }, "jest-junit": { "output": "./__tests__/__results__/unit/junit/junit.xml" }, "jest-html-reporter": { "pageTitle": "CA7 Zowe CLI Plugin Test Results", "outputPath": "./__tests__/__results__/unit/html/index.html", "includeFailureMsg": true }, "dependencies": { "jszip": "^3.10.1" } }