-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
33 lines (33 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "ver-bump",
"version": "1.1.8",
"description": "This script automates bumping the git software project's version using automation. It does several things that are typically required for releasing a Git repository, like git tagging, automatic updating of CHANGELOG.md, and incrementing the version number in various JSON files.",
"author": "John Valai <git@jvk.to>",
"homepage": "https://github.com/jv-k/ver-bump",
"repository": {
"type": "git",
"url": "https://github.com/jv-k/ver-bump.git"
},
"license": "MIT",
"bin": "./ver-bump.sh",
"scripts": {
"release": "gh release create --notes \"$(npx jv-k/releasetool)\"",
"tests:install": "./install_bats.sh",
"tests:run": "./test/bats/bin/bats ./test/ver-bump.bats",
"tests:install:windows": "sh ./install_bats.sh",
"tests:run:windows": "sh ./test/bats/bin/bats ./test/ver-bump.bats",
"docs:build": "bashdoc --color --watch --location ./docs --template ./docs/tpl/index.hbs ./ver-bump.sh"
},
"keywords": [
"bash versioning",
"versioning",
"code versioning",
"bumpversion",
"ver-bump",
"bumping",
"versioning-workflow"
],
"devDependencies": {
"cz-conventional-changelog": "^3.3.0"
}
}