UNPKG

git-pull-run

Version:

Run commands and scripts after git pull

79 lines (78 loc) 2.15 kB
{ "name": "git-pull-run", "version": "1.6.1", "description": "Run commands and scripts after git pull", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/zirkelc/git-pull-run.git" }, "bugs": { "url": "https://github.com/zirkelc/git-pull-run/issues" }, "homepage": "https://github.com/zirkelc/git-pull-run#readme", "author": "Christian Zirkel", "keywords": [ "git", "pull", "run", "npm", "bun", "pnpm", "yarn", "deno", "install", "hooks", "post-merge" ], "bin": "./dist/cli.js", "type": "module", "exports": "./dist/index.js", "files": [ "dist" ], "scripts": { "prebuild": "npm run clean", "build": "swc src -d dist --strip-leading-paths", "build:watch": "npm run build -- --watch", "clean": "rimraf dist", "format": "biome check --write", "lint": "biome check", "prepublishOnly": "npm run build", "release:minor": "npm version $(semver $npm_package_version -i minor) && npm publish --tag latest", "release:next": "npm version $(semver $npm_package_version -i prerelease --preid next ) && npm publish --tag next", "release:patch": "npm version $(semver $npm_package_version -i patch) && npm publish --tag latest", "prestart": "npm run build", "start": "tsx ./src/cli", "pretest": "npm run build", "test": "jest" }, "dependencies": { "@commander-js/extra-typings": "13.1.0", "colorette": "2.0.19", "commander": "13.1.0", "debug": "4.3.3", "execa": "9.5.2", "listr2": "8.2.5", "micromatch": "4.0.4", "package-manager-detector": "1.1.0" }, "devDependencies": { "@biomejs/biome": "1.9.4", "@gmrchk/cli-testing-library": "0.1.2", "@swc/cli": "0.6.0", "@swc/core": "1.11.13", "@swc/jest": "0.2.37", "@total-typescript/tsconfig": "1.0.4", "@types/debug": "4.1.7", "@types/jest": "29.2.0", "@types/micromatch": "4.0.2", "@types/node": "22.13.14", "git-pull-run": "1.4.0", "jest": "29.7.0", "rimraf": "6.0.1", "semver": "7.3.8", "tsx": "4.19.3", "typescript": "5.8.2" } }