Files
openstapps/package.json
Rainer Killinger 124e3754fd 0.9.0
2021-05-19 09:37:47 +02:00

52 lines
1.7 KiB
JSON

{
"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 tslint && 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 --includeDeclarations --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"prepublishOnly": "npm ci && npm run build",
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
"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 <krlwlfrt@gmail.com>",
"contributors": [
"Rainer Killinger"
],
"license": "GPL-3.0-only",
"dependencies": {
"@krlwlfrt/async-pool": "0.4.1",
"@openstapps/logger": "0.7.0",
"@types/node": "14.14.37",
"@types/request": "2.48.5",
"@types/request-promise-native": "1.0.17",
"commander": "6.1.0",
"request": "2.88.2",
"request-promise-native": "1.0.9"
},
"devDependencies": {
"@openstapps/configuration": "0.27.0",
"conventional-changelog-cli": "2.1.1",
"prepend-file-cli": "1.0.6",
"rimraf": "3.0.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typedoc": "0.18.0",
"typescript": "3.8.3"
},
"main": "lib/api.js",
"types": "lib/api.d.ts",
"bin": {
"openstapps-gitlab-api": "lib/cli.js"
}
}