zcatalyst-cli
Version:
Command Line Tool for CATALYST
117 lines (116 loc) • 3.04 kB
JSON
{
"name": "zcatalyst-cli",
"version": "1.20.2",
"description": "Command Line Tool for CATALYST",
"main": "./lib/index.js",
"bin": {
"catalyst": "./lib/bin/catalyst.js"
},
"engines": {
"node": ">=14.0.0"
},
"preferGlobal": true,
"keywords": [
"cli",
"cloud",
"hosting",
"catalyst",
"zoho",
"microservice",
"client",
"functions",
"zcatalyst"
],
"author": "Catalyst (https://github.com/catalystbyzoho)",
"homepage": "https://catalyst.zoho.com",
"license": "MIT",
"dependencies": {
"@iarna/toml": "^2.2.5",
"ansi-colors": "^4.1.3",
"app-module-path": "^2.2.0",
"better-queue": "^3.8.10",
"chokidar": "^3.5.3",
"cli-cursor": "^3.1.0",
"commander": "^9.2.0",
"conf": "^10.1.2",
"cross-spawn": "^7.0.3",
"env-paths": "^2.2.1",
"express": "^4.17.3",
"fs-extra": "^10.1.0",
"fuzzy": "^0.1.3",
"http-proxy": "^1.18.1",
"inquirer": "^8.2.2",
"inquirer-autocomplete-prompt": "^2.0.0",
"jszip": "^3.9.1",
"lodash": "^4.17.21",
"minimatch": "^5.0.1",
"moment": "^2.29.3",
"open": "^8.4.0",
"portfinder": "^1.0.28",
"pretty-ms": "^7.0.1",
"request": "^2.88.2",
"semver": "^7.3.7",
"string-width": "^4.2.3",
"strip-ansi": "^6.0.1",
"update-notifier": "^5.1.0",
"winston": "^3.7.2",
"ws": "^8.5.0",
"xml2js": "^0.4.23",
"yaml": "^2.0.1",
"zcatalyst-angular-schematics": "^1.0.0"
},
"devDependencies": {
"@types/app-module-path": "^2.2.0",
"@types/better-queue": "^3.8.3",
"@types/cross-spawn": "^6.0.2",
"@types/express": "^4.17.13",
"@types/fs-extra": "^9.0.13",
"@types/http-proxy": "^1.17.8",
"@types/inquirer": "^8.2.1",
"@types/inquirer-autocomplete-prompt": "^1.3.4",
"@types/jest": "^27.4.1",
"@types/lodash": "^4.14.182",
"@types/mime-types": "^2.1.4",
"@types/minimatch": "^5.1.2",
"@types/node": "^20.12.7",
"@types/request": "^2.48.8",
"@types/semver": "^7.3.9",
"@types/update-notifier": "^5.1.0",
"@types/ws": "^8.5.3",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"gulp": "^4.0.2",
"jest": "^27.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.6.2",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5"
},
"scripts": {
"build": "gulp build",
"build:watch": "gulp watch",
"clean": "gulp cleanup",
"test:unit": "jest --config jest.config.js",
"lint:nofix": "eslint --ext .ts src/ --color",
"lint:src": "eslint --ext .ts src/ --fix --color",
"lint:unit": "eslint --ext .js,.ts test/ --fix --color",
"lint": "run-p lint:src lint:unit",
"test": "run-s lint:unit test:unit",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src test templates",
"postversion": "git push && git push --tags",
"postinstall": "node ./scripts/postInstall.js "
},
"files": [
"lib/**/*",
"templates/**/*",
"docs/**/*",
"scripts/**/*"
]
}