mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
98 lines
3.2 KiB
JSON
98 lines
3.2 KiB
JSON
{
|
|
"name": "@openstapps/core-tools",
|
|
"version": "0.25.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 lint && 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 --out docs --readme README.md --includeVersion --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",
|
|
"lint:fix": "eslint --fix -c .eslintrc.json --ignore-path .eslintignore --ext .ts src/",
|
|
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --ext .ts src/"
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/logger": "0.7.0",
|
|
"ajv": "6.12.6",
|
|
"better-ajv-errors": "0.7.0",
|
|
"chai": "4.3.4",
|
|
"commander": "8.2.0",
|
|
"deepmerge": "4.2.2",
|
|
"del": "6.0.0",
|
|
"eslint": "7.32.0",
|
|
"flatted": "3.2.2",
|
|
"fs-extra": "10.0.0",
|
|
"glob": "7.2.0",
|
|
"got": "11.8.2",
|
|
"humanize-string": "2.1.0",
|
|
"json-schema": "0.3.0",
|
|
"lodash": "4.17.21",
|
|
"mustache": "4.2.0",
|
|
"openapi-types": "9.3.0",
|
|
"plantuml-encoder": "1.4.0",
|
|
"toposort": "2.0.2",
|
|
"ts-json-schema-generator": "0.95.0",
|
|
"ts-node": "10.2.1",
|
|
"typescript": "4.4.3"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.28.1",
|
|
"@testdeck/mocha": "0.1.2",
|
|
"@types/chai": "4.2.22",
|
|
"@types/fs-extra": "9.0.13",
|
|
"@types/glob": "7.1.4",
|
|
"@types/json-schema": "7.0.9",
|
|
"@types/lodash": "4.14.174",
|
|
"@types/mocha": "9.0.0",
|
|
"@types/mustache": "4.1.2",
|
|
"@types/node": "14.17.19",
|
|
"@types/rimraf": "3.0.2",
|
|
"@typescript-eslint/eslint-plugin": "4.32.0",
|
|
"@typescript-eslint/parser": "4.32.0",
|
|
"conventional-changelog-cli": "2.1.1",
|
|
"eslint-config-prettier": "8.3.0",
|
|
"eslint-plugin-jsdoc": "36.1.0",
|
|
"eslint-plugin-prettier": "3.4.1",
|
|
"eslint-plugin-unicorn": "35.0.0",
|
|
"mocha": "9.1.2",
|
|
"nock": "13.1.3",
|
|
"prepend-file-cli": "1.0.6",
|
|
"prettier": "2.4.1",
|
|
"rimraf": "3.0.2",
|
|
"typedoc": "0.22.4"
|
|
}
|
|
}
|