mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "@gitbeaker/cli",
|
|
"version": "43.2.0",
|
|
"description": "CLI implementation of the GitLab API.",
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=18.20.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/gitbeaker",
|
|
"directory": "packages/cli"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"keywords": [
|
|
"gitlab",
|
|
"api",
|
|
"cli",
|
|
"gitbeaker"
|
|
],
|
|
"bin": {
|
|
"gb": "dist/index.mjs",
|
|
"gitbeaker": "dist/index.mjs"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup src/index.ts --format esm --target esnext",
|
|
"test:unit": "jest --maxWorkers=50% test/unit",
|
|
"test:e2e": "jest --maxWorkers=50% test/e2e",
|
|
"lint": "eslint '**/{src,test,scripts}/**/*.ts'",
|
|
"lint:fix": "yarn lint --fix"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^43.2.0",
|
|
"@gitbeaker/rest": "^43.2.0",
|
|
"chalk": "^5.4.1",
|
|
"sywac": "^1.3.0",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|