mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-15 18:56:18 +00:00
71 lines
2.1 KiB
JSON
71 lines
2.1 KiB
JSON
{
|
|
"name": "@openstapps/core-tools",
|
|
"version": "0.0.3",
|
|
"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 Krunic <jovan.krunic@gmail.com>",
|
|
"Rainer Killinger"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run tslint && npm run compile && npm run documentation",
|
|
"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 --excludeExternals --mode modules --out docs src",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "mocha --require ts-node/register --ui mocha-typescript test/*.spec.ts",
|
|
"tslint": "tslint 'src/**/*.ts'"
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/logger": "0.0.3",
|
|
"@types/async": "2.0.50",
|
|
"@types/chai": "4.1.7",
|
|
"@types/glob": "7.1.1",
|
|
"@types/humanize-string": "1.0.0",
|
|
"@types/mocha": "5.2.5",
|
|
"@types/mustache": "0.8.32",
|
|
"@types/node": "10.12.15",
|
|
"ajv": "6.6.2",
|
|
"async": "2.6.1",
|
|
"async-pool-native": "0.1.0",
|
|
"chai": "4.2.0",
|
|
"commander": "2.19.0",
|
|
"glob": "7.1.3",
|
|
"humanize-string": "1.0.2",
|
|
"jsonschema": "1.2.4",
|
|
"mocha": "5.2.0",
|
|
"mocha-typescript": "1.1.17",
|
|
"mustache": "3.0.1",
|
|
"ts-json-schema-generator": "0.37.1",
|
|
"ts-node": "7.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.5.0",
|
|
"conventional-changelog-cli": "2.0.11",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "2.6.2",
|
|
"tslint": "5.12.0",
|
|
"typedoc": "0.13.0",
|
|
"typescript": "3.2.2"
|
|
}
|
|
}
|