UNPKG

jenkins-project-cli

Version:
54 lines (53 loc) 2 kB
{ "name": "jenkins-project-cli", "version": "1.0.1", "description": "jenkins command line interface", "main": "index.js", "scripts": { "commit": "git-cz", "changelog": "conventional-changelog --preset angular --infile changelog.md --same-file --output-unreleased", "push": "git push && git push --tags && hub release create \"v$(cat .git/RELEASE_VERSION.tmp)\" --message=\"v$(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && npm publish && rm .git/RELEASE_VERSION.tmp && rm .git/COMMITMSG.tmp", "release": "npm version $(conventional-recommended-bump -p angular)", "test": "eslint index.js", "preversion": "npm test", "version": "npm run changelog && git add . && echo \"$(conventional-changelog -p angular)\" > .git/COMMITMSG.tmp", "postversion": "echo $(git log -1 --pretty=%B HEAD^..HEAD) > .git/RELEASE_VERSION.tmp && git tag -d v$(cat .git/RELEASE_VERSION.tmp) && git commit --amend -m \"chore(release): $(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && git tag -a v$(cat .git/RELEASE_VERSION.tmp) -m \"$(cat .git/COMMITMSG.tmp)\"" }, "bin": { "jenkins-project-cli": "./index.js" }, "repository": { "type": "git", "url": "git+https://github.com/marionebl/jenkins-project-cli.git" }, "keywords": [ "jenkins", "cli" ], "author": { "name": "Mario Nebl", "email": "hello@herebecode.com" }, "license": "MIT", "bugs": { "url": "https://github.com/marionebl/jenkins-project-cli/issues" }, "homepage": "https://github.com/marionebl/jenkins-project-cli#readme", "devDependencies": { "conventional-changelog-cli": "1.0.0", "conventional-recommended-bump": "0.1.0", "eslint": "1.10.3", "eslint-config-xo": "0.9.2" }, "dependencies": { "chalk": "1.1.1", "denodeify": "1.2.1", "dotenv": "2.0.0", "jenkins": "0.13.0", "lodash": "4.3.0", "minimist": "1.2.0", "moment": "2.11.2", "rc": "1.1.6", "single-line-log": "1.0.1" } }