{
  "name": "@zowe/zos-ftp-for-zowe-cli",
  "version": "3.1.1",
  "author": "Zowe",
  "repository": {
    "type": "git",
    "url": "https://github.com/zowe/zowe-cli-ftp-plugin.git"
  },
  "files": [
    "lib",
    "npm-shrinkwrap.json"
  ],
  "description": "Data set, USS, and Jobs functionality via FTP for Zowe CLI",
  "main": "lib/index.js",
  "scripts": {
    "build": "npm run clean && npm run license && tsc --pretty && npm run lint && npm run checkTestsCompile && npm run circularDependencyCheck",
    "clean": "rimraf lib",
    "license": "node ./scripts/updateLicense.js",
    "watch": "tsc --pretty --watch",
    "lint": "eslint \"src/**/*.ts\" \"**/__tests__/**/*.ts\"",
    "lint:src": "eslint \"src/**/*.ts\" --ignore-pattern \"**/__tests__/**/*.ts\"",
    "lint:tests": "eslint \"**/__tests__/**/*.ts\"",
    "lint:fix": "npm run lint -- --fix",
    "checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/test-tsconfig.json --noEmit ",
    "circularDependencyCheck": "madge -c lib",
    "test": "npm run test:unit && npm run test:integration && npm run test:system",
    "test:unit": "env-cmd -f __tests__/__resources__/env/unit.env jest .*/__unit__/.* --coverage",
    "test:integration": "env-cmd -f __tests__/__resources__/env/integration.env jest .*/__integration__/.* --no-coverage",
    "test:system": "env-cmd -f __tests__/__resources__/env/system.env jest .*/__system__/.* --no-coverage --runInBand",
    "installPlugin": "npm install && rimraf lib && npm run build && zowe plugins install .",
    "typedoc": "typedoc --out ./docs/typedoc/ ./src/ --disableOutputCheck"
  },
  "imperative": {
    "configurationModule": "lib/imperative.js"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "peerDependencies": {
    "@zowe/imperative": "^8.33.0"
  },
  "dependencies": {
    "zos-node-accessor": "2.0.11"
  },
  "bundleDependencies": [
    "zos-node-accessor"
  ],
  "devDependencies": {
    "@types/jest": "^29.5.12",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^7.1.1",
    "@typescript-eslint/parser": "^7.1.1",
    "@zowe/cli": "^8.36.0",
    "@zowe/cli-test-utils": "^8.36.0",
    "@zowe/imperative": "^8.36.0",
    "env-cmd": "^10.1.0",
    "eslint": "^8.57.0",
    "eslint-plugin-deprecation": "^3.0.0",
    "eslint-plugin-jest": "^27.9.0",
    "eslint-plugin-unused-imports": "^3.1.0",
    "glob": "^7.2.3",
    "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.3",
    "madge": "^6.1.0",
    "rimraf": "^5.0.5",
    "ts-jest": "^29.1.2",
    "typedoc": "^0.25.10",
    "typescript": "^5.3.3"
  },
  "jest": {
    "modulePathIgnorePatterns": [
      "__tests__/__snapshots__/"
    ],
    "setupFilesAfterEnv": [
      "./__tests__/setUpJest.js"
    ],
    "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,
    "coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage",
    "snapshotFormat": {
      "escapeString": true,
      "printBasicPrototype": true
    },
    "reporters": [
      "default",
      "jest-stare",
      [
        "jest-junit",
        {
          "outputDirectory": "__tests__/__results__",
          "reportTestSuiteErrors": true
        }
      ],
      [
        "jest-html-reporter",
        {
          "pageTitle": "FTP Plugin Test Results",
          "outputPath": "__tests__/__results__/results.html",
          "includeFailureMsg": true
        }
      ],
      [
        "github-actions",
        {
          "silent": false
        }
      ]
    ]
  },
  "jest-stare": {
    "additionalResultsProcessors": [
      "jest-junit",
      "jest-html-reporter"
    ],
    "coverageLink": "../coverage/lcov-report/index.html",
    "resultDir": "__tests__/__results__/jest-stare"
  },
  "license": "EPL-2.0"
}