UNPKG

projex

Version:
113 lines (112 loc) 2.94 kB
{ "name": "projex", "version": "1.43.1", "description": "A command line to manage the workflow", "keywords": [ "cli", "projex", "vtex", "git", "bash", "pull-request", "workflow", "release", "semver", "devops" ], "homepage": "", "bugs": { "url": "https://github.com/Maik3345/projex-toolbet/issues" }, "repository": { "type": "git", "url": "https://github.com/Maik3345/projex-toolbet" }, "license": "MIT", "author": "Maik Restrepo", "main": "dist/api/index.js", "types": "dist/index.d.ts", "bin": "bin/run", "files": [ "/bin", "/dist", "/oclif.manifest.json" ], "scripts": { "dev": "npx nodemon", "clean": "shx rm -f oclif.manifest.json npm-shrinkwrap.json", "lint": "eslint . --ext .ts", "build": "shx rm -rf dist && tsc -b && tsc-alias", "build-dev": "tsc -b --incremental && tsc-alias", "prepublish": "npm run build", "postrelease": "npm run prepublish && npm publish", "prepare": "npx husky", "test": "jest" }, "dependencies": { "@oclif/core": "^4.3.3", "@oclif/plugin-help": "^6.2.28", "@oclif/plugin-warn-if-update-available": "^3.1.41", "axios": "^1.9.0", "chalk": "4.1.2", "child-process-es6-promise": "~1.2.1", "cli-table": "^0.3.11", "configstore": "^5.0.1", "fs-extra": "^11.3.0", "prompts": "^2.4.2", "semver": "^7.7.2", "shx": "^0.4.0", "winston": "^3.17.0" }, "devDependencies": { "husky": "^9.1.7", "@commitlint/cli": "^19.8.1", "@commitlint/config-conventional": "^19.8.1", "@oclif/prettier-config": "^0.2.1", "@types/cli-table": "^0.3.4", "@types/configstore": "^6.0.2", "@types/fs-extra": "^11.0.4", "@types/jest": "29.5.14", "@types/node": "^20.19.0", "@types/ramda": "^0.30.2", "@types/semver": "^7.7.0", "jest": "30.0.0", "nodemon": "^3.1.10", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "tsc-alias": "^1.8.16", "tsconfig-paths": "^4.2.0", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "oclif": { "commands": "./dist/commands", "bin": "projex", "scope": "projex", "topicSeparator": " ", "plugins": [ "@oclif/plugin-help", "@oclif/plugin-warn-if-update-available" ], "warn-if-update-available": { "frequency": 1, "frequencyUnit": "days", "timeoutInDays": 7, "message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>.", "registry": "https://registry.npmjs.org" }, "topics": { "git": { "description": "Utilities for manage the git repository" }, "vtex": { "description": "Utilities for manage the vtex process and workflow" }, "bash": { "description": "Utilities for manage the bash process and workflow" } } } }