mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
# [16.0.0](https://github.com/jdalrymple/gitbeaker/compare/15.2.0...16.0.0) (2020-03-24)
* Fixed variable name for registry method, as per … (#646) ([992b809](992b809cb1)), closes [#646](https://github.com/jdalrymple/gitbeaker/issues/646)
### BREAKING CHANGES
* 🧨 A `removeTags` method parameter name changed from tagNameRegex to nameRegex. Works with GitLab 12.x.
Co-authored-by: Joseph Petersen <josephp90@gmail.com>
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@gitbeaker/cli",
|
|
"description": "Full NodeJS CLI implementation of the GitLab API.",
|
|
"version": "16.0.0",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"bin": {
|
|
"gitbeaker": "dist/index.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^15.1.0",
|
|
"@gitbeaker/node": "^15.1.0",
|
|
"chalk": "^3.0.0",
|
|
"ora": "^4.0.3",
|
|
"sywac": "^1.2.2",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-json": "^4.0.2",
|
|
"rollup": "^2.1.0",
|
|
"rollup-plugin-preserve-shebangs": "^0.2.0",
|
|
"rollup-plugin-terser": "^5.3.0",
|
|
"rollup-plugin-typescript2": "^0.26.0",
|
|
"strip-ansi": "^6.0.0",
|
|
"typescript": "^3.8.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=10.0.0"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"keywords": [
|
|
"api",
|
|
"cli",
|
|
"gitbeaker",
|
|
"gitlab",
|
|
"got"
|
|
],
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc && rollup -c"
|
|
}
|
|
}
|