mirror of
https://github.com/jdalrymple/gitbeaker.git
synced 2026-01-18 15:55:30 +00:00
85 lines
2.5 KiB
JSON
85 lines
2.5 KiB
JSON
{
|
|
"name": "gitlab",
|
|
"version": "3.6.0",
|
|
"description": "Full NodeJS implementation of the GitLab API. Supports Promises, Async/Await.",
|
|
"main": "dist/latest/index.js",
|
|
"engines": {
|
|
"node": ">=8.9.0"
|
|
},
|
|
"scripts": {
|
|
"commit": "npx git-cz",
|
|
"build:clean": "rimraf -rf dist && mkdir -p dist",
|
|
"build:es6": "babel src -d dist/latest",
|
|
"build:es5": "babel src -d dist/es5 --env-name es5",
|
|
"build": "npm run build:clean && npm run build:es6 && npm run build:es5",
|
|
"lint": "node_modules/.bin/eslint ./src ./test",
|
|
"test:bundles": "jest test/tests/bundles",
|
|
"test:infrastructure": "jest test/tests/infrastructure",
|
|
"test:services": "jest test/tests/services",
|
|
"test": "jest && codecov",
|
|
"prepublishOnly": "npm run build",
|
|
"semantic-release": "semantic-release"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/jdalrymple/node-gitlab"
|
|
},
|
|
"keywords": [
|
|
"gitlab",
|
|
"api",
|
|
"es6",
|
|
"es5",
|
|
"request"
|
|
],
|
|
"bugs": {
|
|
"url": "https://github.com/jdalrymple/node-gitlab/issues"
|
|
},
|
|
"author": "Justin Dalrymple <justin.s.dalrymple@gmail.com>",
|
|
"license": "MIT",
|
|
"readmeFilename": "README.md",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.0.0-beta.51",
|
|
"@babel/core": "^7.0.0-beta.51",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-beta.51",
|
|
"@babel/plugin-transform-runtime": "^7.0.0-beta.51",
|
|
"@babel/preset-env": "^7.0.0-beta.51",
|
|
"@semantic-release/changelog": "^3.0.0",
|
|
"@semantic-release/git": "^7.0.0",
|
|
"babel-core": "^7.0.0-0",
|
|
"babel-eslint": "^8.2.6",
|
|
"babel-jest": "^23.4.0",
|
|
"codecov": "^3.0.4",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"eslint": "^5.2.0",
|
|
"eslint-config-airbnb": "^17.0.0",
|
|
"eslint-plugin-import": "^2.12.0",
|
|
"eslint-plugin-jest": "^21.18.0",
|
|
"eslint-plugin-jsx-a11y": "^6.1.1",
|
|
"eslint-plugin-react": "^7.9.1",
|
|
"jest": "^23.4.1",
|
|
"jest-extended": "^0.8.0",
|
|
"jest-tap-reporter": "^1.9.0",
|
|
"regenerator-runtime": "^0.12.0",
|
|
"semantic-release": "^15.8.0"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.0.0-beta.51",
|
|
"@semantic-release/npm": "^4.0.0",
|
|
"humps": "^2.0.1",
|
|
"lodash.pick": "^4.4.0",
|
|
"parse-link-header": "^1.0.1",
|
|
"qs": "^6.5.2",
|
|
"request": "^2.87.0",
|
|
"request-promise": "^4.2.2",
|
|
"request-promise-core": "^1.1.1",
|
|
"url-join": "^4.0.0",
|
|
"util.promisify": "^1.0.0",
|
|
"xhr": "^2.5.0"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
}
|
|
}
|