mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
63 lines
2.0 KiB
JSON
63 lines
2.0 KiB
JSON
{
|
|
"name": "@openstapps/projectmanagement",
|
|
"version": "0.0.1",
|
|
"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 && npm run documentation",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
"compile": "rm -rf lib/* && tsc --outDir lib && sed -i '1i#!/usr/bin/env node' lib/projectmanagement.cli.js && sed -i '1i#!/usr/bin/env node' lib/pack.cli.js",
|
|
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
|
"prepareOnly": "npm run build",
|
|
"tslint": "tslint 'src/**/*.ts'"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <karl-philipp.wulfert@gmail.com>",
|
|
"contributors": [
|
|
"Anselm Stordeur <anselmstordeur@gmail.com>",
|
|
"Jovan Krunic <jovan.krunic@gmail.com>"
|
|
],
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@openstapps/gitlab-api": "0.1.0",
|
|
"@openstapps/logger": "0.0.3",
|
|
"@types/del": "3.0.1",
|
|
"@types/glob": "7.1.1",
|
|
"@types/inquirer": "0.0.43",
|
|
"@types/node": "10.12.10",
|
|
"@types/pad": "1.0.1",
|
|
"@types/request": "2.48.1",
|
|
"@types/semver": "5.5.0",
|
|
"@types/yaml": "1.0.1",
|
|
"async-pool-native": "0.1.0",
|
|
"commander": "2.19.0",
|
|
"del": "3.0.0",
|
|
"gitlab": "4.2.7",
|
|
"glob": "7.1.3",
|
|
"inquirer": "6.2.0",
|
|
"moment": "2.22.2",
|
|
"pad": "2.2.1",
|
|
"request": "2.88.0",
|
|
"semver": "5.6.0",
|
|
"tangular": "2.0.1",
|
|
"toposort": "2.0.2",
|
|
"yaml": "1.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.0.2",
|
|
"conventional-changelog-cli": "2.0.11",
|
|
"ts-node": "7.0.1",
|
|
"tslint": "5.11.0",
|
|
"typedoc": "0.13.0",
|
|
"typescript": "3.1.6"
|
|
},
|
|
"main": "lib/common.js",
|
|
"typings": "lib/common.d.ts",
|
|
"bin": {
|
|
"openstapps-pack": "lib/pack.cli.js",
|
|
"openstapps-projectmanagement": "lib/projectmanagement.cli.js"
|
|
}
|
|
}
|