{
  "name": "@broadcom/jclcheck-for-zowe-cli",
  "version": "3.0.0",
  "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 __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 .",
    "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.3.0",
    "@zowe/zosmf-for-zowe-sdk": "^8.3.0",
    "lodash": "4.17.21",
    "lodash.merge": "4.6.2"
  },
  "devDependencies": {
    "@types/fs-extra": "^8.1.2",
    "@types/jest": "^27.5.2",
    "@types/js-yaml": "^4.0.9",
    "@types/lodash": "^4.17.13",
    "@types/node": "^18.17.1",
    "@typescript-eslint/eslint-plugin": "^5.59.5",
    "@typescript-eslint/parser": "^5.59.5",
    "@zowe/cli": "^8.10.1",
    "@zowe/cli-test-utils": "^8.3.0",
    "@zowe/imperative": "^8.10.1",
    "env-cmd": "^8.0.2",
    "eslint": "8.50.0",
    "eslint-plugin-jest": "^27.2.1",
    "eslint-plugin-license-header": "^0.6.0",
    "eslint-plugin-unused-imports": "^2.0.0",
    "fs-extra": "^8.1.0",
    "husky": "^9.0.1",
    "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": "^3.7.0",
    "jest-junit": "^16.0.0",
    "jest-stare": "^2.5.0",
    "js-yaml": "^4.1.0",
    "json-server": "^0.17.2",
    "madge": "^5.0.2",
    "rimraf": "^2.7.1",
    "ts-jest": "^27.1.5",
    "ts-node": "^7.0.1",
    "typedoc": "^0.26.11",
    "typescript": "^4.9.5",
    "uuid": "^9.0.1"
  },
  "peerDependencies": {
    "@zowe/imperative": "^8.2.0"
  },
  "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.xml"
  },
  "jest-html-reporter": {
    "pageTitle": "Zowe CLI Sample Plugin Test Results",
    "outputPath": "__tests__/__results__/results.html",
    "includeFailureMsg": true
  }
}