gitbeaker/packages/core/package.json
dependabot[bot] ba1a906002
Bump @rollup/plugin-replace from 2.4.2 to 3.0.0 in /packages/core (#1948)
Bumps [@rollup/plugin-replace](https://github.com/rollup/plugins/tree/HEAD/packages/replace) from 2.4.2 to 3.0.0.
- [Release notes](https://github.com/rollup/plugins/releases)
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/wasm-v3.0.0/packages/replace)

---
updated-dependencies:
- dependency-name: "@rollup/plugin-replace"
  dependency-type: direct:development
  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>
Co-authored-by: Justin Dalrymple <jdalrymple@users.noreply.github.com>
2021-09-18 13:27:29 -04:00

62 lines
1.6 KiB
JSON

{
"name": "@gitbeaker/core",
"description": "Core API implementation of the GitLab API. Supports Promises, Async/Await.",
"version": "34.2.0",
"author": {
"name": "Justin Dalrymple"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"dependencies": {
"@gitbeaker/requester-utils": "^34.2.0",
"form-data": "^4.0.0",
"li": "^1.3.0",
"mime-types": "^2.1.32",
"query-string": "^7.0.0",
"xcase": "^2.0.1"
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-json": "^4.1.0",
"@types/node": "^16.0.0",
"esm": "^3.2.25",
"fs-extra": "^10.0.0",
"get-param-names": "github:jdalrymple/get-param-names#1-improve-functionality",
"jest-extended": "^0.11.5",
"rollup": "^2.47.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-node": "^10.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=10.19.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
"keywords": [
"api",
"es5",
"es6",
"gitlab"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"types": "dist/types",
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/gitbeaker"
},
"scripts": {
"build:self": "rollup -c",
"build": "yarn run build:map & yarn run build:self",
"build:map": "ESM_DISABLE_CACHE=true TS_NODE_PROJECT=scripts/tsconfig.json node -r esm -r ts-node/register scripts/generate.ts",
"test:integration": "jest 'test/integration'",
"test:unit": "jest test/unit"
}
}