{ "name": "@openstapps/projectmanagement", "version": "0.17.0", "description": "Main documentation and scripts for maintenance.", "repository": { "type": "git", "url": "git@gitlab.com:openstapps/projectmanagement.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'", "check-configuration": "openstapps-configuration", "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", "postversion": "npm run changelog", "prepublishOnly": "npm ci && npm run build", "preversion": "npm run prepublishOnly", "push": "git push && git push origin \"v$npm_package_version\"", "test": "nyc mocha --require ts-node/register --ui mocha-typescript 'test/**/*.spec.ts'", "tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'" }, "author": "Karl-Philipp Wulfert ", "contributors": [ "Anselm Stordeur ", "Jovan Krunić ", "Michel Jonathan Schmitz", "Wieland Schöbl" ], "license": "GPL-3.0-only", "dependencies": { "@krlwlfrt/async-pool": "0.1.0", "@openstapps/gitlab-api": "0.6.0", "@openstapps/logger": "0.4.0", "@slack/client": "5.0.2", "@types/glob": "7.1.1", "@types/mustache": "0.8.32", "@types/node": "10.17.5", "@types/tmp": "0.1.0", "commander": "4.0.1", "glob": "7.1.6", "moment": "2.24.0", "mustache": "3.1.0", "tmp": "0.1.0" }, "devDependencies": { "@openstapps/configuration": "0.21.1", "@types/chai": "4.2.5", "@types/chai-as-promised": "7.1.2", "@types/mocha": "5.2.7", "chai": "4.2.0", "chai-as-promised": "7.1.1", "conventional-changelog-cli": "2.0.28", "mocha": "6.2.2", "mocha-typescript": "1.1.17", "nyc": "14.1.1", "prepend-file-cli": "1.0.6", "rimraf": "3.0.0", "ts-node": "8.5.2", "tslint": "5.20.1", "typedoc": "0.15.2", "typescript": "3.7.2" }, "main": "lib/common.js", "typings": "lib/common.d.ts", "bin": { "openstapps-projectmanagement": "lib/cli.js" }, "nyc": { "all": true, "branches": 95, "check-coverage": true, "exclude": [ "src/cli.ts" ], "extension": [ ".ts" ], "functions": 95, "include": [ "src/tasks/get-used-version.ts" ], "lines": 95, "per-file": true, "reporter": [ "html", "text-summary" ], "require": [ "ts-node/register" ], "statements": 95 } }