mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"name": "@openstapps/gitlab-api",
|
|
"version": "0.4.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 && npm run documentation",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
|
|
"compile": "tsc && sed -i '1i#!/usr/bin/env node' lib/cli.js",
|
|
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
|
"prepublishOnly": "npm ci && npm run build",
|
|
"tslint": "tslint 'src/**/*.ts'",
|
|
"check-configuration": "openstapps-configuration"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@openstapps/logger": "0.0.5",
|
|
"@types/request": "2.48.1",
|
|
"@types/request-promise-native": "1.0.15",
|
|
"commander": "2.19.0",
|
|
"request": "2.88.0",
|
|
"request-promise-native": "1.0.7"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.6.0",
|
|
"@types/node": "10.12.27",
|
|
"conventional-changelog-cli": "=2.0.12",
|
|
"ts-node": "8.0.2",
|
|
"typedoc": "0.14.2",
|
|
"typescript": "3.3.3333"
|
|
},
|
|
"main": "lib/api.js",
|
|
"types": "lib/api.d.ts",
|
|
"bin": {
|
|
"openstapps-gitlab-api": "lib/cli.js"
|
|
}
|
|
}
|