mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
feat: add core tools
This commit is contained in:
62
package.json
Normal file
62
package.json
Normal file
@@ -0,0 +1,62 @@
|
||||
{
|
||||
"name": "@openstapps/core-tools",
|
||||
"version": "0.0.1",
|
||||
"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",
|
||||
"check-configuration": "openstapps-configuration",
|
||||
"compile": "tsc && prepend lib/cli.js '#!/usr/bin/env node'",
|
||||
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
||||
"prepareOnly": "npm run build",
|
||||
"tslint": "tslint 'src/**/*.ts'"
|
||||
},
|
||||
"dependencies": {
|
||||
"@openstapps/logger": "0.0.3",
|
||||
"@types/async": "2.0.50",
|
||||
"@types/glob": "7.1.1",
|
||||
"@types/humanize-string": "1.0.0",
|
||||
"@types/mustache": "0.8.32",
|
||||
"@types/node": "10.12.15",
|
||||
"async": "2.6.1",
|
||||
"async-pool-native": "0.1.0",
|
||||
"commander": "2.19.0",
|
||||
"glob": "7.1.3",
|
||||
"humanize-string": "1.0.2",
|
||||
"jsonschema": "1.2.4",
|
||||
"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",
|
||||
"tslint": "5.12.0",
|
||||
"typedoc": "0.13.0",
|
||||
"typescript": "3.2.2"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user