mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 04:22:50 +00:00
41 lines
1.3 KiB
JSON
41 lines
1.3 KiB
JSON
{
|
|
"name": "@openstapps/gitlab-api",
|
|
"version": "0.2.2",
|
|
"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",
|
|
"compile": "tsc && sed -i '1i#!/usr/bin/env node' lib/cli.js",
|
|
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
|
"prepublishOnly": "npm run build",
|
|
"tslint": "tslint 'src/**/*.ts'"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@openstapps/logger": "0.0.3",
|
|
"@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.5"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.0.2",
|
|
"@types/node": "10.12.10",
|
|
"conventional-changelog-cli": "^2.0.11",
|
|
"ts-node": "7.0.1",
|
|
"typedoc": "0.13.0",
|
|
"typescript": "3.2.1"
|
|
},
|
|
"main": "lib/api.js",
|
|
"types": "lib/api.d.ts",
|
|
"bin": {
|
|
"openstapps-gitlab-api": "lib/cli.js"
|
|
}
|
|
}
|