mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
58 lines
1.4 KiB
JSON
58 lines
1.4 KiB
JSON
{
|
|
"name": "@gitbeaker/cli",
|
|
"description": "Full NodeJS CLI implementation of the GitLab API.",
|
|
"version": "35.7.0",
|
|
"author": {
|
|
"name": "Justin Dalrymple"
|
|
},
|
|
"bin": {
|
|
"gitbeaker": "dist/index.js"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/gitbeaker/issues"
|
|
},
|
|
"dependencies": {
|
|
"@gitbeaker/core": "^35.7.0",
|
|
"@gitbeaker/node": "^35.7.0",
|
|
"chalk": "4.1.2",
|
|
"ora": "^6.0.0",
|
|
"sywac": "^1.3.0",
|
|
"xcase": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-json": "^4.1.0",
|
|
"jest-extended": "^1.0.0",
|
|
"rollup": "^2.47.0",
|
|
"rollup-plugin-preserve-shebangs": "^0.2.0",
|
|
"rollup-plugin-typescript2": "^0.31.1",
|
|
"strip-ansi": "^7.0.0",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.2.4",
|
|
"uuid": "^8.3.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.2.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": "rollup -c",
|
|
"test:integration": "TEST_ID=$(uuid) node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/integration",
|
|
"test:unit": "node --expose-gc ../../node_modules/.bin/jest --runInBand --logHeapUsage test/unit"
|
|
}
|
|
}
|