UNPKG

bumped-terminal

Version:

Executes whatever terminal command inside as bumped plugin.

91 lines (90 loc) 2.21 kB
{ "name": "bumped-terminal", "description": "Executes whatever terminal command inside as bumped plugin.", "homepage": "https://github.com/bumped/bumped-terminal", "version": "0.8.1", "main": "./index.js", "author": { "email": "josefrancisco.verdu@gmail.com", "name": "Kiko Beats", "url": "https://github.com/Kikobeats" }, "contributors": [ { "name": "ImgBotApp", "email": "ImgBotHelp@gmail.com" } ], "repository": { "type": "git", "url": "git+https://github.com/bumped/bumped-terminal.git" }, "bugs": { "url": "https://github.com/bumped/bumped-terminal/issues" }, "keywords": [ "bumped", "plugin", "terminal" ], "dependencies": { "coffeescript": "~2.5.1", "execspawn": "~1.0.1", "lodash.omit": "~4.5.0", "strip-final-newline": "~2.0.0" }, "devDependencies": { "@commitlint/cli": "latest", "@commitlint/config-conventional": "latest", "ci-publish": "latest", "conventional-github-releaser": "latest", "finepack": "latest", "git-authors-cli": "latest", "husky": "latest", "lint-staged": "latest", "mocha": "latest", "npm-check-updates": "latest", "should": "latest", "standard-version": "latest" }, "engines": { "node": ">= 4" }, "files": [ "index.js", "lib" ], "scripts": { "postrelease": "npm run release:tags && npm run release:github && ci-publish", "prerelease": "npm run update:check && git-authors-cli", "release": "git add package.json && standard-version -a", "release:github": "conventional-github-releaser -p angular", "release:tags": "git push --follow-tags origin HEAD:master", "test": "sh test/test.sh", "update": "ncu -a", "update:check": "ncu -- --error-level 2" }, "license": "MIT", "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "husky": { "hooks": { "commit-msg": "commitlint -E HUSKY_GIT_PARAMS", "pre-commit": "lint-staged" } }, "lint-staged": { "package.json": [ "finepack", "git add" ] }, "standard-version": { "scripts": { "prechangelog": "git-authors-cli" } } }