mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
86 lines
2.8 KiB
JSON
86 lines
2.8 KiB
JSON
{
|
|
"name": "@openstapps/core-tools",
|
|
"version": "0.22.0",
|
|
"description": "Tools to convert and validate StAppsCore",
|
|
"keywords": [
|
|
"converter",
|
|
"core",
|
|
"StApps",
|
|
"StAppsCore",
|
|
"validator"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@gitlab.com:openstapps/core-tools.git"
|
|
},
|
|
"license": "GPL-3.0-only",
|
|
"main": "./lib/index.js",
|
|
"types": "./lib/index.d.ts",
|
|
"bin": {
|
|
"openstapps-core-tools": "./lib/cli.js"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"contributors": [
|
|
"Anselm Stordeur <anselmstordeur@gmail.com>",
|
|
"Jovan Krunić <jovan.krunic@gmail.com>",
|
|
"Rainer Killinger <mail-openstapps@killinger.co>",
|
|
"Michel Jonathan Schmitz",
|
|
"Wieland Schöbl"
|
|
],
|
|
"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",
|
|
"plantuml-start": "docker run --name plantuml-server -d -p 8080:8080 registry.gitlab.com/openstapps/core-tools:latest",
|
|
"plantuml-restart": "docker restart plantuml-server",
|
|
"plantuml-stop": "docker stop plantuml-server",
|
|
"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": "mocha --require ts-node/register test/*.spec.ts",
|
|
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
|
},
|
|
"dependencies": {
|
|
"@krlwlfrt/async-pool": "0.6.0",
|
|
"@openstapps/logger": "0.7.0",
|
|
"@types/glob": "7.1.4",
|
|
"@types/json-schema": "7.0.8",
|
|
"@types/mustache": "4.1.2",
|
|
"@types/node": "14.17.5",
|
|
"ajv": "7.1.1",
|
|
"better-ajv-errors": "0.7.0",
|
|
"chai": "4.3.4",
|
|
"commander": "7.2.0",
|
|
"deepmerge": "4.2.2",
|
|
"del": "6.0.0",
|
|
"flatted": "3.2.1",
|
|
"glob": "7.1.7",
|
|
"got": "11.8.2",
|
|
"humanize-string": "2.1.0",
|
|
"json-schema": "0.3.0",
|
|
"mustache": "4.2.0",
|
|
"plantuml-encoder": "1.4.0",
|
|
"toposort": "2.0.2",
|
|
"ts-json-schema-generator": "0.70.2",
|
|
"ts-node": "9.1.1",
|
|
"typedoc": "0.18.0",
|
|
"typescript": "3.8.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.27.0",
|
|
"@testdeck/mocha": "0.1.2",
|
|
"@types/chai": "4.2.21",
|
|
"@types/mocha": "8.2.3",
|
|
"@types/rimraf": "3.0.1",
|
|
"conventional-changelog-cli": "2.1.1",
|
|
"mocha": "8.3.2",
|
|
"nock": "13.1.1",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "3.0.2",
|
|
"tslint": "6.1.3"
|
|
}
|
|
}
|