{ "name": "@openstapps/gitlab-api", "version": "0.9.0", "description": "Wraps common GitLab API calls in a TypeScript class.", "repository": { "type": "git", "url": "git@gitlab.com:openstapps/gitlab-api.git" }, "scripts": { "build": "npm run lint && npm run compile", "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'", "compile": "rimraf lib && tsc && prepend lib/cli.js '#!/usr/bin/env node\n'", "documentation": "typedoc --out docs --readme README.md --listInvalidSymbolLinks --entryPointStrategy expand src", "prepublishOnly": "npm ci && npm run build && npm run test", "lint": "eslint --ext .ts src/", "check-configuration": "openstapps-configuration", "postversion": "npm run changelog", "preversion": "npm run prepublishOnly", "push": "git push && git push origin \"v$npm_package_version\"" }, "author": "Karl-Philipp Wulfert ", "contributors": [ "Rainer Killinger " ], "license": "GPL-3.0-only", "dependencies": { "@krlwlfrt/async-pool": "0.4.1", "@openstapps/logger": "1.1.1", "@types/node": "14.18.33", "@types/request": "2.48.8", "@types/request-promise-native": "1.0.18", "commander": "6.2.1", "request": "2.88.2", "request-promise-native": "1.0.9" }, "devDependencies": { "@openstapps/configuration": "0.33.0", "@openstapps/eslint-config": "1.1.0", "@typescript-eslint/eslint-plugin": "5.43.0", "@typescript-eslint/parser": "5.43.0", "conventional-changelog-cli": "2.2.2", "eslint": "8.28.0", "eslint-config-prettier": "8.5.0", "eslint-plugin-jsdoc": "39.6.2", "eslint-plugin-prettier": "4.2.1", "eslint-plugin-unicorn": "45.0.0", "prepend-file-cli": "1.0.6", "prettier": "2.7.1", "rimraf": "3.0.2", "ts-node": "10.9.1", "typedoc": "0.22.18", "typescript": "4.4.4" }, "main": "lib/api.js", "types": "lib/api.d.ts", "bin": { "openstapps-gitlab-api": "lib/cli.js" } }