mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
# [10.1.0](https://github.com/jdalrymple/node-gitlab/compare/10.0.3...10.1.0) (2019-08-06) ### Features * Adding Merge Base endpoint for the Repositories API ([040fc78](https://github.com/jdalrymple/node-gitlab/commit/040fc78)), closes [#400](https://github.com/jdalrymple/node-gitlab/issues/400)
94 lines
2.5 KiB
JSON
94 lines
2.5 KiB
JSON
{
|
|
"name": "gitlab",
|
|
"version": "10.1.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.2",
|
|
"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": "^3.0.0",
|
|
"husky": "^3.0.0",
|
|
"jest": "^24.8.0",
|
|
"jest-extended": "^0.11.1",
|
|
"jest-tap-reporter": "^1.9.0",
|
|
"lint-staged": "^9.2.1",
|
|
"prettier": "^1.17.1",
|
|
"rollup": "^1.19.3",
|
|
"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.22.0",
|
|
"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"
|
|
}
|
|
}
|