Comparing version 1.0.243 to 1.0.244
{ | ||
"name": "bashlink", | ||
"version": "1.0.243", | ||
"version": "1.0.244", | ||
"description": "Testable, predictable and scoped code in bash.", | ||
@@ -52,4 +52,4 @@ "keywords": [ | ||
"bin": { | ||
"bashlink-document": "documentation.sh", | ||
"bashlink-doctest": "doctest.sh" | ||
"bashlink-doctest": "doctest.sh", | ||
"bashlink-document": "documentation.sh" | ||
}, | ||
@@ -61,7 +61,8 @@ "repository": { | ||
"scripts": { | ||
"clear": "rm --recursive apiDocumentation &>/dev/null || true", | ||
"clear": "[ ! -e apiDocumentation ] || rm --recursive apiDocumentation", | ||
"build": "echo nothing to build.", | ||
"document": "mkdir --parents apiDocumentation/bashlink/latest && yarn document:show 1>apiDocumentation/bashlink/latest/index.html", | ||
"document:show": "./documentation.sh", | ||
"document:show:error": "./documentation.sh 1>/dev/null", | ||
"lint": "! hash shellcheck && echo Please install \"shellcheck\". || shellcheck -x *.sh", | ||
"lint": "shellcheck -x *.sh", | ||
"lint:given": "shellcheck -x", | ||
@@ -71,8 +72,8 @@ "postversion": "yarn publish --non-interactive; git push --tags && git push", | ||
"test": "./doctest.sh --verbose", | ||
"update": "yarn version --patch", | ||
"update": "yarn version patch && yarn npm publish", | ||
"update:documentation": "documentation-website" | ||
}, | ||
"devDependencies": { | ||
"documentation-website": "*", | ||
"shellcheck": "*" | ||
"documentation-website": "^1.0.326", | ||
"shellcheck": "^2.2.0" | ||
}, | ||
@@ -87,3 +88,9 @@ "documentationWebsite": { | ||
"trackingCode": "UA-40192634-14" | ||
} | ||
} | ||
}, | ||
"engines": { | ||
"node": ">=20", | ||
"npm": ">=10", | ||
"yarn": ">=4" | ||
}, | ||
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb" | ||
} |
255388