{
  "name": "@broadcom/file-master-plus-for-zowe-cli",
  "version": "6.0.1",
  "description": "File Master Plus Plug-in for Zowe CLI",
  "author": "Broadcom",
  "license": "SEE LICENSE IN LICENSE",
  "repository": "",
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "keywords": [
    "fmp",
    "mainframe",
    "CLI",
    "zos",
    "filemaster",
    "filemasterplus"
  ],
  "files": [
    "lib"
  ],
  "main": "lib/index.js",
  "typings": "lib/index.d.ts",
  "imperative": {
    "configurationModule": "lib/imperative.js"
  },
  "scripts": {
    "clean": "rimraf lib && rimraf coverage",
    "lint": "tslint --force --format verbose \"src/**/*.ts\"",
    "prepublishOnly": "echo Look up for the output of prepublishOnly",
    "prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
    "build": "node scripts/updateLicense.js && tsc --pretty",
    "test:systemapi": "jest .*/__system__/api/.* --coverage false --runInBand",
    "test:systemcli": "bash */__system__/cli/cli.env.setup.sh && jest .*/__system__/cli/.* --coverage=false --runInBand",
    "test:unit": "env-cmd -f __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__/.*\"",
    "coverage": "jest --coverage",
    "watch": "npm run build -- --watch",
    "watch:test": "jest --watch"
  },
  "peerDependencies": {
    "@zowe/imperative": "^8.23.1"
  },
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.0.0",
    "@types/yargs": "^17.0.33",
    "@zowe/imperative": "^8.24.2",
    "env-cmd": "^10.1.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",
    "rimraf": "^2.7.1",
    "ts-jest": "^29.1.5",
    "ts-node": "^7.0.1",
    "tslint": "^6.1.3",
    "typescript": "^5.5.3"
  },
  "engines": {
    "node": ">=8.0.0"
  },
  "jest": {
    "modulePathIgnorePatterns": [
      "__tests__/__snapshots__/"
    ],
    "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,
    "reporters": [
      "default",
      "jest-junit",
      "jest-stare",
      "jest-html-reporter"
    ],
    "coverageReporters": [
      "json",
      "lcov",
      "text",
      "cobertura"
    ],
    "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
  },
  "jest-junit": {
    "outputDirectory": "<rootDir>/__tests__/__results__/unit"
  }
}