@broadcom/endevor-bridge-for-git-for-zowe-cli
Version:
Endevor Bridge for Git plug-in for Zowe CLI
125 lines • 4 kB
JSON
{
"name": "@broadcom/endevor-bridge-for-git-for-zowe-cli",
"version": "2.7.0",
"description": "Endevor Bridge for Git plug-in for Zowe CLI",
"author": "Broadcom",
"license": "SEE LICENSE IN LICENSE",
"repository": "",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"endevor",
"bridge",
"git",
"mainframe",
"zos",
"CA",
"brightside",
"plugin",
"zowe",
"zowe-cli"
],
"files": [
"lib"
],
"main": "lib/index.js",
"imperative": {
"configurationModule": "lib/imperative.js"
},
"scripts": {
"installPlugin": "npm install && npm run clean && npm run build && zowe plugins install .",
"build": "node scripts/updateLicense.js && tsc --pretty && npm run checkTestsCompile",
"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": "echo Look up for the output of prepublishOnly",
"lint": "npm run lint:src && npm run lint:tests && npm run lint:src-imports",
"lint:src": "tslint --format stylish --exclude \"**/__tests__/**/*.ts\" \"src/**/*.ts\"",
"lint:src-imports": "tslint --config tslint-imports.json --fix --project .",
"lint:tests": "tslint --format stylish -c ./tslint-tests.json --exclude \"node_modules/**/*\" --exclude \"**__tests__/__results__/**\" \"**/__tests__/**/*.ts\"",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "env-cmd __tests__/__resources__/env/unit.env jest --coverage --testPathIgnorePatterns \".*/__system__|__integration__/.*\"",
"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"
},
"dependencies": {
"@broadcom/endevor-bridge-for-git-rest-api": "0.2.19",
"@zowe/core-for-zowe-sdk": "^7.1.1",
"@zowe/zos-jobs-for-zowe-sdk": "^7.1.1",
"lodash": "4.17.21"
},
"peerDependencies": {
"@broadcom/endevor-for-zowe-cli": "^7.0.1",
"@zowe/imperative": "^5.1.0"
},
"devDependencies": {
"@broadcom/endevor-for-zowe-cli": "^7.0.1",
"@types/fs-extra": "^8.0.0",
"@types/jest": "^20.0.5",
"@types/lodash": "4.14.186",
"@types/node": "^8.0.0",
"@types/yargs": "^13.0.9",
"@zowe/core-for-zowe-sdk": "^7.1.1",
"@zowe/imperative": "^5.27.9",
"@zowe/zos-jobs-for-zowe-sdk": "^7.1.1",
"env-cmd": "^8.0.2",
"fs-extra": "^8.1.0",
"glob": "^7.1.3",
"jest": "^24.5.0",
"jest-cli": "^24.9.0",
"jest-environment-node": "^24.9.0",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.3.0",
"jest-junit": "^6.3.0",
"jest-stare": "^2.2.0",
"js-yaml": "^3.13.1",
"rimraf": "^2.7.1",
"shebang-regex": "^2.0.0",
"ts-jest": "^24.2.0",
"ts-node": "^7.0.1",
"tslint": "^5.20.1",
"tslint-etc": "^1.10.0",
"tsutils": "^3.17.1",
"typescript": "^4.9.5",
"uuid": "^3.2.1"
},
"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"
}
}