mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2024-12-19 22:57:51 +00:00
34 lines
1.4 KiB
JSON
34 lines
1.4 KiB
JSON
{
|
|
"name": "bash3boilerplate",
|
|
"description": "Copypastable templates to write better bash scripts",
|
|
"version": "2.4.1",
|
|
"packageManager": "yarn@3.6.0+sha224.19e47520fa56c6146388fdeb438d9dcf6630c3f277a2e1180995c3bb",
|
|
"engines": {
|
|
"node": ">= 18",
|
|
"yarn": "3.6.0"
|
|
},
|
|
"scripts": {
|
|
"lint": "shellcheck --shell=bash $(find . -name '*.sh' -maxdepth 2)",
|
|
"release:major": "env SEMANTIC=major npm run release",
|
|
"release:minor": "env SEMANTIC=minor npm run release",
|
|
"release:patch": "env SEMANTIC=patch npm run release",
|
|
"release": "npm version ${SEMANTIC:-patch} -m \"Release %s\" && npm run version:replace && git commit main.sh src/*.sh -m 'Update version' && git push && git push --tags && npm publish",
|
|
"test:debug:main:repeated": "cross-env LOG_LEVEL=7 test/acceptance.sh main-repeated",
|
|
"test:update": "cross-env SAVE_FIXTURES=true npm run test",
|
|
"test": "test/acceptance.sh",
|
|
"upgrade:modules": "next-update --keep true --tldr",
|
|
"version:current": "node -e 'console.log(require(\"./package.json\").version)'",
|
|
"version:replace": "replace 'v\\d+\\.\\d+\\.\\d+' \"v$(npm run --silent version:current)\" main.sh src/*.sh"
|
|
},
|
|
"optionalDependencies": {
|
|
"fsevents": "*"
|
|
},
|
|
"devDependencies": {
|
|
"cross-env": "3.1.3",
|
|
"fakefile": "0.0.8",
|
|
"next-update": "1.5.1",
|
|
"npm-run-all": "3.1.2",
|
|
"replace": "0.3.0"
|
|
}
|
|
}
|