gitbeaker/package.json
semantic-release-bot 82e96fd74f chore(release): 7.0.0 [skip ci]
# [7.0.0](https://github.com/jdalrymple/node-gitlab/compare/6.4.0...7.0.0) (2019-06-28)

### Features

* Adding missing endpoints for deploy keys [#373](https://github.com/jdalrymple/node-gitlab/issues/373) ([b23dd29](https://github.com/jdalrymple/node-gitlab/commit/b23dd29))

### BREAKING CHANGES

* all method now takes an optional object since projectId is no longer required. If no projectId is passed, the all method returns all deploy keys across all projects of the GitLab instance
2019-06-28 20:01:01 +00:00

94 lines
2.5 KiB
JSON

{
"name": "gitlab",
"version": "7.0.0",
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
"keywords": [
"api",
"browser",
"es5",
"es6",
"gitlab",
"ky"
],
"homepage": "https://github.com/jdalrymple/node-gitlab#readme",
"bugs": {
"url": "https://github.com/jdalrymple/node-gitlab/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jdalrymple/node-gitlab"
},
"license": "MIT",
"author": {
"name": "Justin Dalrymple",
"email": "justin.s.dalrymple@gmail.com"
},
"files": [
"dist"
],
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.browser.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && rollup -c",
"commit": "npx git-cz",
"coverage": "codecov",
"lint": "tslint -p . -t stylish",
"lint:doc:fix": "prettier --write './*.json' './*.yml' './*.md'",
"lint:fix": "npm run lint -- --fix",
"prepublishOnly": "npm run build",
"release": "semantic-release",
"test:integration": "jest test/integration -c=jest.config.json --detectOpenHandles",
"test:unit": "jest test/unit --debug -c=jest.config.json"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"form-data": "^2.3.3",
"humps": "^2.0.1",
"ky": "^0.11.0",
"ky-universal": "^0.2.1",
"li": "^1.3.0",
"query-string": "^6.8.1",
"randomstring": "^1.1.5",
"universal-url": "^2.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.12",
"@semantic-release/npm": "^5.1.12",
"@types/form-data": "^2.2.1",
"@types/humps": "^1.1.2",
"@types/jest": "^24.0.15",
"codecov": "^3.5.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.6.0",
"jest": "^24.8.0",
"jest-extended": "^0.11.1",
"jest-tap-reporter": "^1.9.0",
"lint-staged": "^8.2.1",
"prettier": "^1.17.1",
"rollup": "^1.15.6",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^5.1.0",
"rollup-plugin-terser": "^5.0.0",
"rollup-plugin-typescript2": "^0.21.1",
"semantic-release": "^15.13.17",
"ts-jest": "^24.0.2",
"tslint": "^5.16.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.2"
},
"engines": {
"node": ">=8.9.0"
}
}