mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
49 lines
1.7 KiB
JSON
49 lines
1.7 KiB
JSON
{
|
|
"name": "@openstapps/gitlab-api",
|
|
"version": "0.6.1",
|
|
"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>",
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@krlwlfrt/async-pool": "0.2.1",
|
|
"@openstapps/logger": "0.4.0",
|
|
"@types/node": "12.12.24",
|
|
"@types/request": "2.48.4",
|
|
"@types/request-promise-native": "1.0.17",
|
|
"commander": "4.1.0",
|
|
"request": "2.88.0",
|
|
"request-promise-native": "1.0.8"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.22.0",
|
|
"conventional-changelog-cli": "2.0.31",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "3.0.0",
|
|
"ts-node": "8.5.4",
|
|
"tslint": "5.20.1",
|
|
"typedoc": "0.15.6",
|
|
"typescript": "3.7.4"
|
|
},
|
|
"main": "lib/api.js",
|
|
"types": "lib/api.d.ts",
|
|
"bin": {
|
|
"openstapps-gitlab-api": "lib/cli.js"
|
|
}
|
|
}
|