{
  "name": "@broadcom/mat-analyze-for-zowe-cli",
  "version": "2.1.0",
  "description": "MAT Analyze Plug-in for Zowe CLI",
  "author": "Broadcom",
  "license": "SEE LICENSE IN LICENSE",
  "repository": "",
  "main": "lib/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "node scripts/updateLicense.js && tsc --pretty -p tsconfig.json && npm run checkTestsCompile",
    "checkTestsCompile": "echo \\\"Checking that test source compiles...\\\" && tsc --project test-tsconfig.json --noEmit ",
    "prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
    "clean": "rimraf lib",
    "watch": "tsc --pretty --watch",
    "prepublishOnly": "npm run build",
    "lint": "eslint  \"src/**/*.ts\"",
    "eslint-fix": "eslint --fix \"src/**/*.ts\"",
    "test": "npm run test:unit && npm run test:system",
    "test:system": "env-cmd __tests__/__resources__/env/system.env jest .*/__system__/.* --coverage false",
    "test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\"",
    "installPlugin": "npm install && npm run clean && npm run build && zowe plugins install ."
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "imperative": {
    "configurationModule": "lib/imperative.js"
  },
  "dependencies": {
    "@broadcom/endevor-for-zowe-cli": "8.2.2",
    "object-mapper": "6.2.0"
  },
  "peerDependencies": {
    "@zowe/imperative": "8.28.0"
  },
  "devDependencies": {
    "@types/config": "3.3.4",
    "@types/fs-extra": "11.0.4",
    "@types/jest": "29.5.14",
    "@types/mustache": "4.2.5",
    "@types/node": "18.19.80",
    "@types/yargs": "17.0.33",
    "@zowe/cli": "8.28.0",
    "@zowe/cli-test-utils": "8.28.0",
    "@zowe/imperative": "8.28.0",
    "config": "3.3.12",
    "copyfiles": "2.4.1",
    "env-cmd": "8.0.2",
    "fs-extra": "11.3.0",
    "glob": "9.3.5",
    "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",
    "js-yaml": "4.1.1",
    "rimraf": "6.0.1",
    "shebang-regex": "4.0.0",
    "ts-jest": "29.2.4",
    "ts-node": "10.9.2",
    "tsutils": "3.21.0",
    "typescript": "5.6.3",
    "typescript-eslint": "8.26.1",
    "uuid": "10.0.0"
  },
  "jest": {
    "modulePathIgnorePatterns": [
      "__tests__/__snapshots__/"
    ],
    "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"
    ],
    "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage",
    "rootDir": ".",
    "moduleNameMapper": {
      "^@api/(.*)$": "<rootDir>/src/api/$1",
      "^@handlers/(.*)$": "<rootDir>/src/handlers/$1",
      "^@cli/(.*)$": "<rootDir>/src/cli/$1",
      "^@common/(.*)$": "<rootDir>/src/common/$1",
      "^@config$": "<rootDir>/src/config",
      "^@src/(.*)$": "<rootDir>/src/$1"
    }
  },
  "jest-stare": {
    "resultDir": "__tests__/__results__/jest-stare",
    "additionalResultsProcessors": [
      "jest-junit",
      "jest-html-reporter"
    ],
    "coverageLink": "../coverage/lcov-report/index.html"
  },
  "jest-junit": {
    "output": "__tests__/__results__/junit.xml"
  },
  "jest-html-reporter": {
    "pageTitle": "Zowe CLI Sample Plugin Test Results",
    "outputPath": "__tests__/__results__/results.html",
    "includeFailureMsg": true
  },
  "directories": {
    "doc": "docs",
    "lib": "lib"
  }
}