UNPKG

@broadcom/mat-detect-for-zowe-cli

Version:

MAT Detect plug-in for Zowe CLI

139 lines 3.62 kB
{ "name": "@broadcom/mat-detect-for-zowe-cli", "version": "3.0.3", "description": "MAT Detect plug-in for Zowe CLI", "repository": "", "keywords": [ "pma", "mat", "CA", "Detect", "pma-util", "mainframe", "brightside", "plugin" ], "main": "lib/index.js", "files": [ "lib" ], "typings": "lib/index.d.ts", "imperative": { "configurationModule": "lib/imperative.js" }, "publishConfig": { "registry": "https://registry.npmjs.org/" }, "scripts": { "clean": "rimraf lib && rimraf coverage", "lint": "eslint \"src/**/*.ts\"", "eslint-fix": "eslint --fix \"src/**/*.ts\"", "prepublishOnly": "npm run build", "prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version", "build": "node scripts/updateLicense.js && tsc --pretty && copyfiles zossrc/jcl/* lib && copyfiles zossrc/jcl/* src", "test": "npm run test:unit && npm run test:system", "test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false --runInBand", "test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\"", "watch": "tsc --pretty --watch", "watch:test": "jest --watch" }, "dependencies": { "mustache": "4.2.0" }, "peerDependencies": { "@zowe/imperative": "^8.0.0" }, "devDependencies": { "@eslint/js": "9.8.0", "@types/config": "^3.3.4", "@types/jest": "^29.5.12", "@types/mustache": "4.2.5", "@types/node": "22.1.0", "@types/yargs": "17.0.33", "@zowe/cli": "^8.0.0", "@zowe/imperative": "^8.0.0", "config": "^3.3.12", "copyfiles": "^2.4.1", "env-cmd": "^8.0.2", "eslint": "^9.8.0", "fs-extra": "^11.2.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.10.2", "jest-junit": "^16.0.0", "jest-stare": "^2.5.2", "mockdate": "^3.0.5", "mustache": "4.2.0", "rimraf": "^6.0.1", "ts-jest": "^29.2.4", "ts-node": "^8.10.1", "typescript": "^5.5.4", "typescript-eslint": "^8.0.1", "uuid": "^10.0.0" }, "engines": { "node": ">=6.0.0" }, "jest": { "modulePathIgnorePatterns": [ "__tests__/__snapshots__/" ], "transform": { ".(ts)": [ "ts-jest", { "disableSourceMapSupport": true } ] }, "testRegex": "(test|spec)\\.ts$", "moduleFileExtensions": [ "ts", "js" ], "testPathIgnorePatterns": [ "<rootDir>/__tests__/__results__" ], "testEnvironment": "node", "collectCoverageFrom": [ "src/**/*.ts", "!**/__tests__/**", "!**/index.ts", "!**/main.ts" ], "collectCoverage": false, "reporters": [ "default", "jest-junit", "jest-stare", "jest-html-reporter" ], "coverageReporters": [ "json", "lcov", "text", "cobertura" ], "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage" }, "jest-stare": { "resultDir": "__tests__/__results__/jest-stare", "coverageLink": "../coverage/lcov-report/index.html" }, "jest-junit": { "output": "__tests__/__results__/junit.xml" }, "jest-html-reporter": { "pageTitle": "Plugin Test Results", "outputPath": "__tests__/__results__/results.html", "includeFailureMsg": true }, "author": "Broadcom", "license": "See License in License", "directories": { "doc": "docs", "lib": "lib" } }