UNPKG

zowe-cli-cics-deploy-plugin

Version:

IBM CICS Bundle generation and deployment for Zowe CLI

134 lines (133 loc) 3.74 kB
{ "name": "zowe-cli-cics-deploy-plugin", "version": "1.1.1", "description": "IBM CICS Bundle generation and deployment for Zowe CLI", "repository": { "type": "git", "url": "https://github.com/IBM/zowe-cli-cics-deploy-plugin" }, "keywords": [ "cics", "cli", "mainframe", "nodejs", "zos", "z/os", "zowe" ], "main": "lib/index.js", "files": [ "lib", "NOTICES.md", "README.md", "package.json", "LICENSE", "CHANGELOG.md" ], "bin": { "zowe-cli-cics-deploy": "./lib/main.js" }, "scripts": { "build": "tsc --pretty && npm run checkTestsCompile && gulp doc", "checkTestsCompile": "echo \"Checking that test source compiles...\" && tsc --project __tests__/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": "tslint \"src/**/*.ts\" && tslint \"__tests__/**/*.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 --runInBand --detectOpenHandles --coverage --testPathIgnorePatterns \".*/__system__/.*\"", "installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .", "doc": "gulp doc" }, "imperative": { "configurationModule": "lib/imperative.js" }, "dependencies": { "@zowe/cics-for-zowe-cli": "^4.0.8", "fast-xml-parser": "^4.2.4" }, "devDependencies": { "@zowe/cli": "^6.0.0", "@zowe/imperative": "^4.7.3", "@types/fs-extra": "^8.0.1", "@types/jest": "^22.2.3", "@types/node": "^12.12.24", "@types/yargs": "^13.0.4", "clear-require": "^2.0.0", "env-cmd": "^8.0.2", "fast-xml-parser": "^4.2.4", "fs-extra": "^8.1.0", "gulp": "^4.0.2", "gulp-cli": "^2.2.1", "gulp-debug": "^4.0.0", "gulp-plumber": "^1.2.1", "gulp-replace": "^1.0.0", "gulp-util": "^3.0.8", "jest": "^26.0.1", "jest-cli": "^26.0.1", "jest-environment-node": "^26.0.1", "jest-environment-node-debug": "^2.0.0", "jest-html-reporter": "^3.1.3", "jest-junit": "^10.0.0", "js-yaml": "^3.14.0", "mustache": "^4.0.1", "rimraf": "^3.0.2", "ts-jest": "^26.1.0", "ts-node": "^8.10.2", "tslint": "^6.1.2", "typedoc": "^0.17.7", "typescript": "^3.9.5", "uuid": "^3.3.2" }, "peerDependencies": { "@zowe/cli": "^6.0.0", "@zowe/imperative": "^4.7.3" }, "jest": { "modulePathIgnorePatterns": [ "__tests__/__snapshots__/" ], "reporters": [ "default", "jest-junit" ], "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" }, "jest-junit": { "output": "__tests__/__results__/junit.xml" }, "jest-html-reporter": { "pageTitle": "Zowe cics-deploy Plugin Test Results", "outputPath": "__tests__/__results__/results.html", "includeFailureMsg": true }, "author": "IBM Corp", "contributors": [ "Contributors to the Zowe Project" ], "license": "EPL-2.0" }