gitbeaker/packages/cli/package.json
dependabot[bot] a12fa21524
Bump ora from 5.4.1 to 6.0.0 in /packages/cli (#2031)
Bumps [ora](https://github.com/sindresorhus/ora) from 5.4.1 to 6.0.0.
- [Release notes](https://github.com/sindresorhus/ora/releases)
- [Commits](https://github.com/sindresorhus/ora/compare/v5.4.1...v6.0.0)

---
updated-dependencies:
- dependency-name: ora
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2021-09-04 12:39:52 -04:00

56 lines
1.2 KiB
JSON

{
"name": "@gitbeaker/cli",
"description": "Full NodeJS CLI implementation of the GitLab API.",
"version": "34.1.0",
"author": {
"name": "Justin Dalrymple"
},
"bin": {
"gitbeaker": "dist/index.js"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"dependencies": {
"@gitbeaker/core": "^34.1.0",
"@gitbeaker/node": "^34.1.0",
"chalk": "^4.1.1",
"ora": "^6.0.0",
"sywac": "^1.3.0",
"xcase": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-json": "^4.1.0",
"rollup": "^2.47.0",
"rollup-plugin-preserve-shebangs": "^0.2.0",
"rollup-plugin-typescript2": "^0.30.0",
"strip-ansi": "^7.0.0",
"typescript": "^4.2.4",
"uuid": "^8.3.2"
},
"engines": {
"node": ">=10.19.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) jest test/integration",
"test:unit": "jest test/unit"
}
}