UNPKG

push-to-git

Version:

CLI tool to simplify deployment to 'external git repositories' or 'remote branches with attached onPush action webhooks'

80 lines (79 loc) 1.45 kB
{ "name": "push-to-git", "version": "1.1.4", "description": "CLI tool to simplify deployment to 'external git repositories' or 'remote branches with attached onPush action webhooks'", "main": "src/cli.js", "bin": { "push-to-git": "./src/cli.js" }, "scripts": { "test": "xo", "start": "./src/cli.js" }, "repository": { "type": "git", "url": "git+https://github.com/bjesuiter/deploy-to-git.git" }, "keywords": [ "cli", "git", "deployment", "continuous-deployment", "continuous-integration", "ci", "cd", "dev-ops", "project" ], "author": "Benjamin Jesuiter", "license": "ISC", "bugs": { "url": "https://github.com/bjesuiter/deploy-to-git/issues" }, "homepage": "https://github.com/bjesuiter/deploy-to-git#readme", "files": [ "package.json", "CHANGELOG.md", "LICENSE", "README.md", "src" ], "dependencies": { "child-process-promise": "^2.2.1", "commander": "^4.0.1", "console-prompt": "^1.0.0", "project-version": "^1.2.0" }, "devDependencies": { "xo": "^0.25.3" }, "xo": { "space": false, "rules": { "quotes": [ "error", "single", { "allowTemplateLiterals": true } ], "prefer-destructuring": [ "error", { "array": false, "object": false }, { "enforceForRenamedProperties": false } ], "no-trailing-spaces": [ "error", { "skipBlankLines": true, "ignoreComments": true } ] } } }