Justin Dalrymple d9cd4c9a91 refactor: 💡 Migrated to a monorepo structure
Gitbeaker has been split up into 5 subpackages: gitbeaker-core, gitbeaker-node, gitbeaker-cli, gitbeaker-browser and gitbeaker-requester-utils.

gitbeaker-[node,cli,browser] are enviroment
specific sub packages. For example, if you want to use gitbeaker in a NodeJS environment, use gitbeaker-node. gitbeaker-core is where all the
base logic exists, and gitbeaker-requester-utils is a collection of utility functions for making custom requester libraries.

BREAKING CHANGE: 🧨 This migration requires users to import specific subpackages. For NodeJS
usage, that would be @gitbeaker/node.
2020-02-02 16:53:54 +01:00

54 lines
1.1 KiB
JSON

{
"name": "@gitbeaker/cli",
"description": "Full NodeJS CLI implementation of the GitLab API.",
"version": "15.0.0",
"author": {
"name": "Justin Dalrymple"
},
"bin": {
"gitbeaker": "dist/index.js"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"dependencies": {
"@gitbeaker/core": "15.0.0",
"@gitbeaker/node": "15.0.0",
"chalk": "^3.0.0",
"ora": "^4.0.3",
"sywac": "^1.2.2",
"xcase": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.0.1",
"rollup": "^1.31.0",
"rollup-plugin-preserve-shebangs": "^0.1.2",
"rollup-plugin-terser": "^5.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"strip-ansi": "^6.0.0",
"typescript": "^3.7.5"
},
"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"
}
}