bumped
Version:
Makes easy release software.
137 lines (136 loc) • 3.4 kB
JSON
{
"name": "bumped",
"description": "Makes easy release software.",
"homepage": "https://bumped.github.io",
"version": "0.14.2",
"main": "./bin/index.js",
"bin": {
"bumped": "./bin/index.js"
},
"author": {
"email": "josefrancisco.verdu@gmail.com",
"name": "Kiko Beats",
"url": "https://github.com/Kikobeats"
},
"contributors": [
{
"name": "Ilya Radchenko",
"email": "ilya@burstcreations.com"
},
{
"name": "Filip Dupanović",
"email": "filip.dupanovic@gmail.com"
},
{
"name": "Kornel Dubieniecki",
"email": "lekterable@gmail.com"
},
{
"name": "Elena Torro",
"email": "elenatorro@gmail.com"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/bumped/bumped.git"
},
"bugs": {
"url": "https://github.com/bumped/bumped/issues"
},
"keywords": [
"bumped",
"npm",
"release",
"semver",
"version"
],
"dependencies": {
"acho": "~4.0.6",
"args-js": "~0.10.12",
"async": "~3.2.0",
"chalk": "~4.1.0",
"coffeescript": "~2.5.1",
"dot-prop": "~6.0.1",
"exists-file": "~3.0.2",
"fs-extra": "~9.1.0",
"global-modules": "~2.0.0",
"json-future": "~2.2.4",
"lodash.clonedeep": "~4.5.0",
"lodash.omit": "~4.5.0",
"lodash.partial": "~4.2.1",
"meow": "~9.0.0",
"parse-config-file": "~1.0.4",
"pretty-ms": "~7.0.1",
"rc": "~1.2.8",
"resolve-up": "~1.0.0",
"semver": "~7.3.4",
"time-span": "~4.0.0",
"update-notifier": "~5.1.0",
"yaml-parser": "~3.5.3"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"ci-publish": "latest",
"conventional-github-releaser": "latest",
"coveralls": "latest",
"finepack": "latest",
"git-authors-cli": "latest",
"git-dirty": "latest",
"husky": "latest",
"lint-staged": "latest",
"mocha": "latest",
"npm-check-updates": "latest",
"nyc": "latest",
"should": "latest",
"standard-version": "latest",
"travis-after-all": "latest"
},
"engines": {
"node": ">= 8"
},
"files": [
"bin",
"index.js",
"lib"
],
"scripts": {
"contributors": "(git-authors-cli && finepack && git add package.json && git commit -m 'build: contributors' --no-verify) || true",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"postrelease": "npm run release:tags && npm run release:github && ci-publish",
"posttest": "cp .bumpedrc_backup .bumpedrc",
"prerelease": "npm run update:check && npm run contributors",
"pretest": "rm .bumpedrc || exit 0",
"release": "standard-version -a",
"release:github": "conventional-github-releaser -p angular",
"release:tags": "git push --follow-tags origin HEAD:master",
"test": "nyc --extension .coffee mocha test/*.coffee",
"update": "ncu -u",
"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"
]
},
"mocha": {
"bail": true,
"reporter": "spec",
"require": [
"coffeescript/register",
"should"
]
}
}