UNPKG

@broadcom/sysview-for-zowe-cli

Version:

Zowe CLI plugin for SYSVIEW

129 lines 3.75 kB
{ "name": "@broadcom/sysview-for-zowe-cli", "author": "Broadcom", "description": "Zowe CLI plugin for SYSVIEW", "devDependencies": { "@types/jest": "^20.0.5", "@types/node": "^16.7.0", "@types/yargs": "8.0.2", "@zowe/cli-test-utils": "^8.0.0", "@zowe/imperative": "^8.0.0", "env-cmd": "^8.0.2", "jest": "^29.1.5", "jest-cli": "^29.1.5", "jest-environment-node": "^29.1.5", "jest-environment-node-debug": "^2.0.0", "jest-html-reporter": "^3.3.0", "jest-junit": "^6.4.0", "jest-stare": "^2.2.0", "rimraf": "^2.7.1", "ts-jest": "^29.1.5", "ts-node": "^7.0.1", "tslint": "^6.1.1", "typedoc": "^0.15.0", "typescript": "5.5.4", "uuid": "^3.2.1" }, "peerDependencies": { "@zowe/imperative": "^8.0.0" }, "directories": { "doc": "docs", "lib": "lib" }, "files": [ "lib" ], "imperative": { "configurationModule": "lib/imperative.js" }, "jest": { "collectCoverage": false, "collectCoverageFrom": [ "src/**/*.ts", "!**/__tests__/**", "!**/index.ts", "!**/main.ts" ], "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage", "coverageReporters": [ "json", "lcov", "text", "cobertura" ], "moduleFileExtensions": [ "ts", "js" ], "modulePathIgnorePatterns": [ "__tests__/__snapshots__/" ], "reporters": [ "default", "jest-junit", "jest-stare" ], "setupFilesAfterEnv": [ "./__tests__/setUpJest.js" ], "testEnvironment": "node", "testPathIgnorePatterns": [ "<rootDir>/__tests__/__results__", "./__tests__/setUpJest.js" ], "testRegex": "(test|spec)\\.ts$", "transform": { ".(ts)": "ts-jest" } }, "jest-html-reporter": { "pageTitle": "Zowe CLI Plugin for SYSVIEW Test Results", "outputPath": "__tests__/__results__/unit/results.html", "includeFailureMsg": true }, "jest-junit": { "output": "__tests__/__results__/unit/junit.xml" }, "jest-stare": { "resultDir": "__tests__/__results__/unit/jest-stare", "additionalResultsProcessors": [ "jest-junit", "jest-html-reporter" ], "coverageLink": "../coverage/lcov-report/index.html" }, "keywords": [ "zowe", "cli", "plugin", "SYSVIEW", "mainframe", "zos", "z/OS", "Broadcom" ], "license": "SEE LICENSE IN LICENSE", "main": "lib/index.js", "publishConfig": { "registry": "https://registry.npmjs.org/" }, "repository": "", "scripts": { "build": "node scripts/updateLicense.js && tsc --pretty && npm run checkTestsCompile", "checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ", "prebuild": "npm run clean && npm run lint && 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\"", "lint-fix": "tslint --fix -p tsconfig.json", "test": "npm run test:unit && npm run test:integration && npm run test: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 ." }, "types": "lib/index.d.ts", "version": "2.0.0" }