UNPKG

gitquick

Version:

Git Add, Commit, and Push on the Fly

64 lines (63 loc) 1.59 kB
{ "name": "gitquick", "version": "5.2.1", "description": "Git Add, Commit, and Push on the Fly", "repository": { "url": "https://github.com/JoshAaronLevy/gitquick" }, "main": "./dist/bin/index.js", "types": "./dist/bin/index.d.ts", "scripts": { "build": "tsc", "start": "npm run build && node ./dist/bin/index.js", "dev": "tsc --watch", "relink": "npm uninstall -g gitquick && rm -rf package-lock.json && npm install && rm -rf dist && npm run build && npm link && echo 'Now running gitquick version:' && gitquick -v", "test": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --verbose", "deploy": "rm -rf package-lock.json && npm install && rm -rf dist && npm run build && npm publish && git add -A && git commit -m 'Updated version and publishing' && git push", "lint": "eslint src/", "lint:fix": "eslint src/ --fix" }, "author": { "name": "Josh Levy" }, "keywords": [ "git", "vcs", "command", "utility", "helper", "terminal", "shell" ], "license": "MIT", "type": "module", "preferGlobal": true, "engines": { "node": ">=14.18.0" }, "bin": { "gitquick": "./dist/bin/index.js" }, "files": [ "dist", "README.md", "CHANGELOG.md" ], "dependencies": { "colorette": "^2.0.20", "commander": "^10.0.1", "enquirer": "^2.3.6", "nanospinner": "^1.2.2", "shelljs": "^0.9.2" }, "devDependencies": { "@types/jest": "^29.5.0", "@types/node": "^20.0.0", "@types/shelljs": "^0.8.15", "eslint": "^8.35.0", "jest": "^29.5.0", "jest-mock-extended": "^3.0.4", "ts-jest": "^29.1.0", "typescript": "^5.0.0" } }