@broadcom/endevor-for-zowe-cli
Version:
Endevor Plug-in for Zowe CLI
146 lines • 3.8 kB
JSON
{
"name": "@broadcom/endevor-for-zowe-cli",
"version": "8.2.0",
"description": "Endevor Plug-in for Zowe CLI",
"author": "Broadcom",
"license": "SEE LICENSE IN LICENSE",
"repository": "",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"endevor",
"mainframe",
"zos",
"CA",
"brightside",
"plugin",
"zowe",
"zowe-cli"
],
"files": [
"lib",
"CHANGELOG.md"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"imperative": {
"configurationModule": "lib/imperative.js"
},
"scripts": {
"clean": "rimraf lib && rimraf coverage",
"lint": "eslint -c .eslintrc.js --ext .ts \"src/**/*.ts\"",
"lintFix": "eslint -c .eslintrc.js --ext .ts \"src/**/*.ts\" --quiet --fix",
"prepublishOnly": "echo Look up for the output of prepublishOnly",
"prebuild": "npm run clean && npm run lint && echo Using TypeScript && tsc --version",
"build": "node scripts/updateVersion && node scripts/updateLicense.js && tsc --pretty",
"fix-n-build": "npm run lintFix && npm run build",
"test": "jest --coverage",
"test-single": "jest ListPackage.test",
"snapshot": "jest --updateSnapshot",
"coverage": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "jest --watch"
},
"dependencies": {
"form-data": "2.5.1",
"lodash": "4.17.21",
"node-diff3": "2.1.2"
},
"peerDependencies": {
"@zowe/imperative": "^8.0.0"
},
"devDependencies": {
"@types/glob": "^5.0.35",
"@types/jest": "^29.5.12",
"@types/lodash": "4.14.182",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"@zowe/cli": "^8.0.0",
"@zowe/imperative": "^8.14.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-jest": "^27.0.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "^3.0.0",
"glob": "^7.1.6",
"husky": "^4.2.5",
"jest": "^29.1.5",
"jest-environment-node": "^26.1.0",
"jest-environment-node-debug": "^2.0.0",
"jest-html-reporter": "^3.3.0",
"jest-junit": "^6.3.0",
"jest-stare": "^2.2.0",
"lint-staged": "^10.1.7",
"mock-fs": "^5.4.1",
"rimraf": "^2.7.1",
"ts-jest": "^29.1.5",
"ts-node": "^7.0.1",
"typescript": "5.5.3"
},
"engines": {
"node": ">=8.0.0"
},
"jest": {
"globals": {},
"watchPathIgnorePatterns": [
".*jest-stare.*\\.js"
],
"modulePathIgnorePatterns": [
"__tests__/__snapshots__/"
],
"transform": {
".(ts)": [
"ts-jest",
{
"disableSourceMapSupport": true,
"diagnostics": false
}
]
},
"testRegex": "__tests__.*\\.(spec|test)\\.ts$",
"moduleFileExtensions": [
"ts",
"js"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!**/__tests__/**",
"!src/**/doc/I*.ts"
],
"testEnvironment": "node",
"reporters": [
"default",
"jest-junit",
"jest-stare"
],
"coverageReporters": [
"json",
"text",
"lcov",
"cobertura"
],
"coverageDirectory": "<rootDir>/__tests__/__results__/unit/coverage"
},
"jest-junit": {
"suiteName": "jest tests",
"output": "./__tests__/__results__/unit/junit/junit.xml",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{classname}-{title}",
"ancestorSeparator": " › ",
"usePathForSuiteName": "true"
},
"jest-stare": {
"resultDir": "./__tests__/__results__/unit/jest-stare"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache"
}
}