UNPKG

@broadcom/ca7-for-zowe-cli

Version:

CA 7 Workload Automation Plug-in for Zowe CLI

133 lines 4.2 kB
{ "name": "@broadcom/ca7-for-zowe-cli", "version": "2.0.1", "description": "CA 7 Workload Automation Plug-in for Zowe CLI", "author": "Broadcom", "license": "SEE LICENSE IN LICENSE", "keywords": [ "ca7", "CLI", "CA", "Broadcom", "Mainframe", "brightside", "zowe", "zowe-cli", "plugin" ], "files": [ "lib" ], "publishConfig": { "registry": "https://registry.npmjs.org/" }, "scripts": { "build:soruce": "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": "tslint \"src/**/*.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: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": "^5.0.0" }, "devDependencies": { "@types/fs-extra": "^8.0.0", "@types/jest": "^22.2.3", "@types/node": "^8.0.0", "@types/yargs": "^13.0.2", "@zowe/cli": "^7.2.4", "@zowe/imperative": "^5.3.3", "env-cmd": "^8.0.2", "fs-extra": "^8.1.0", "jest": "^27.5.1", "jest-cli": "^27.5.1", "jest-environment-node": "^27.5.1", "jest-environment-node-debug": "^2.0.0", "jest-html-reporter": "^2.8.2", "jest-junit": "^13.0.0", "jest-stare": "^1.11.1", "madge": "^5.0.1", "rimraf": "^2.7.1", "ts-jest": "^27.1.4", "ts-node": "^7.0.1", "tslint": "^5.20.1", "typedoc": "^0.22.13", "typescript": "^3.7.4", "uuid": "^3.2.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__" ], "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": "Plugin Test Results", "outputPath": "__tests__/__results__/unit/html/index.html", "includeFailureMsg": true }, "repository": "" }