gitbeaker/packages/cli/package.json
2024-02-02 19:12:27 +00:00

52 lines
1.1 KiB
JSON

{
"name": "@gitbeaker/cli",
"version": "39.34.2",
"description": "CLI implementation of the GitLab API.",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/gitbeaker"
},
"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 --treeshake --target node18",
"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": "^39.34.2",
"@gitbeaker/rest": "^39.34.2",
"chalk": "4.1.2",
"sywac": "^1.3.0",
"xcase": "^2.0.1"
},
"devDependencies": {
"tsup": "^8.0.1",
"typescript": "^5.3.3"
}
}