UNPKG

gitquick

Version:

Git Add, Commit, and Push on the Fly

47 lines (46 loc) 932 B
{ "name": "gitquick", "version": "4.7.4", "description": "Git Add, Commit, and Push on the Fly", "repository": { "url": "https://github.com/JoshAaronLevy/gitquick" }, "main": "./bin/index.js", "scripts": { "start": "node ./bin/index.js", "test": "jest --coverage --verbose", "deploy": "git add -A && git commit -m 'Updated version and publishing' && git push && npm publish", "lint": "eslint .", "lint:fix": "eslint . --fix" }, "author": { "name": "Josh Levy" }, "keywords": [ "git", "vcs", "command", "utility", "helper", "terminal", "shell" ], "license": "MIT", "preferGlobal": true, "bin": { "gitquick": "./bin/index.js" }, "dependencies": { "chalk": "^2.4.2", "commander": "^10.0.1", "enquirer": "^2.3.6", "execa": "^2.1.0", "ora": "^4.0.2", "yargs": "^17.7.2" }, "devDependencies": { "eslint": "^8.35.0", "jest": "^29.5.0", "jest-mock-extended": "^3.0.4" } }