{
  "name": "@broadcom/jclcheck-for-zowe-cli",
  "version": "3.0.2",
  "description": "JCLCheck Plug-in for Zowe CLI",
  "author": "Broadcom",
  "license": "SEE LICENSE IN LICENSE",
  "repository": "",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "keywords": [
    "jck",
    "jcl",
    "jclcheck",
    "CLI",
    "zos",
    "CA",
    "Broadcom",
    "Mainframe",
    "brightside",
    "zowe",
    "zowe-cli",
    "plugin"
  ],
  "main": "lib/index.js",
  "files": [
    "lib"
  ],
  "scripts": {
    "build:source": "tsc --pretty",
    "clean": "rimraf lib",
    "prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
    "build": "tsc --pretty && npm run checkTestsCompile && madge -c lib",
    "checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
    "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:system": "env-cmd -f __tests__/__resources__/env/system.env jest \".*/__system__/.*\" --coverage false",
    "test:integration": "env-cmd -f __tests__/__resources__/env/integration.env jest .*/__integration__/.* --coverage false",
    "test:unit": "env-cmd -f __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\" \"__integration__/.*\" ",
    "installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
    "server:start": "cd server && json-server db.json --routes routes.json --ro",
    "typedoc": "typedoc --out ./docs/typedoc/ ./src/"
  },
  "imperative": {
    "configurationModule": "lib/pluginDef.js"
  },
  "dependencies": {
    "@zowe/core-for-zowe-sdk": "^8.31.5",
    "@zowe/zosmf-for-zowe-sdk": "^8.31.5",
    "lodash": "4.18.1",
    "lodash.merge": "4.6.2"
  },
  "devDependencies": {
    "@eslint/compat": "2.0.3",
    "@eslint/js": "10.0.1",
    "@types/fs-extra": "^11.0.4",
    "@types/jest": "^30.0.0",
    "@types/js-yaml": "^4.0.9",
    "@types/lodash": "^4.17.24",
    "@types/node": "^25.3.3",
    "@typescript-eslint/eslint-plugin": "^8.56.1",
    "@typescript-eslint/parser": "^8.56.1",
    "@zowe/cli": "8.29.12",
    "@zowe/cli-test-utils": "^8.30.1",
    "@zowe/imperative": "8.29.11",
    "env-cmd": "^11.0.0",
    "eslint": "^10.0.3",
    "eslint-plugin-jest": "29.15.0",
    "eslint-plugin-license-header": "^0.8.0",
    "eslint-plugin-unused-imports": "^4.4.1",
    "fs-extra": "^11.3.4",
    "globals": "17.4.0",
    "husky": "^9.1.7",
    "jest": "^30.3.0",
    "jest-cli": "^30.3.0",
    "jest-environment-node": "^30.3.0",
    "jest-environment-node-debug": "^2.0.0",
    "jest-html-reporter": "^4.3.0",
    "jest-junit": "^16.0.0",
    "jest-stare": "^2.5.3",
    "js-yaml": "^4.1.1",
    "json-server": "^0.17.4",
    "madge": "^8.0.0",
    "rimraf": "^6.1.3",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.17",
    "typescript": "^5.9.3",
    "uuid": "^13.0.0"
  },
  "peerDependencies": {
    "@zowe/imperative": "^8.31.5"
  },
  "jest": {
    "modulePathIgnorePatterns": [
      "__tests__/__snapshots__/"
    ],
    "watchPathIgnorePatterns": [
      ".*jest-stare.*\\.js"
    ],
    "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",
      "html"
    ],
    "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
  },
  "jest-stare": {
    "resultDir": "./__tests__/__results__/unit/jest-stare",
    "coverageLink": "../coverage/lcov-report/index.html"
  },
  "jest-html-reporter": {
    "pageTitle": "Zowe CLI JCLCheck Plugin Test Results",
    "outputPath": "./__tests__/__results__/unit/results.html",
    "includeFailureMsg": true
  }
}