semantic-release-bot d850e8d2e6 chore: Release 🚀 17.0.0 [skip ci]
# [17.0.0](https://github.com/jdalrymple/gitbeaker/compare/16.0.0...17.0.0) (2020-03-24)

### Bug Fixes

* **core:** Adding better handling for form type arguments ([#570](https://github.com/jdalrymple/gitbeaker/issues/570)) ([4751ed2](4751ed225f)), closes [#568](https://github.com/jdalrymple/gitbeaker/issues/568)

### BREAKING CHANGES

* **core:** Trigger.pipeline now has a defined variables property to house all the pipeline variables to be set. Before these variables were set on the root object, but this made it difficult to parse any future options that may be added to this function.
2020-03-24 21:16:52 +00:00

51 lines
1.1 KiB
JSON

{
"name": "@gitbeaker/node",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"version": "17.0.0",
"author": {
"name": "Justin Dalrymple"
},
"bugs": {
"url": "https://github.com/jdalrymple/gitbeaker/issues"
},
"dependencies": {
"@gitbeaker/core": "^15.1.0",
"@gitbeaker/requester-utils": "^15.1.0",
"form-data": "^3.0.0",
"got": "^10.6.0",
"xcase": "^2.0.1"
},
"devDependencies": {
"@types/node": "^13.9.3",
"rollup": "^2.1.0",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist"
],
"homepage": "https://github.com/jdalrymple/gitbeaker#readme",
"keywords": [
"api",
"es5",
"es6",
"gitlab",
"got"
],
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/gitbeaker"
},
"scripts": {
"build": "tsc && rollup -c"
}
}