Files
openstapps/package.json
Karl-Philipp Wulfert 9e8dc186f3 build: update dependencies
Fixes #16
2019-04-08 10:59:40 +02:00

70 lines
2.1 KiB
JSON

{
"name": "@openstapps/core-tools",
"version": "0.4.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 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 --mode modules --out docs --readme README.md --listInvalidSymbolLinks src",
"prepublishOnly": "npm ci && npm run build",
"test": "mocha --require ts-node/register --ui mocha-typescript test/*.spec.ts",
"tslint": "tslint 'src/**/*.ts'"
},
"dependencies": {
"@openstapps/logger": "0.0.5",
"@types/chai": "4.1.7",
"@types/glob": "7.1.1",
"@types/mocha": "5.2.6",
"@types/mustache": "0.8.32",
"@types/node": "10.14.4",
"ajv": "6.10.0",
"async-pool-native": "0.1.0",
"chai": "4.2.0",
"commander": "2.20.0",
"del": "4.1.0",
"glob": "7.1.3",
"humanize-string": "2.1.0",
"jsonschema": "1.2.4",
"mocha": "6.1.1",
"mocha-typescript": "1.1.17",
"mustache": "3.0.1",
"toposort": "2.0.2",
"ts-json-schema-generator": "0.40.0",
"ts-node": "8.0.3",
"typedoc": "0.14.2"
},
"devDependencies": {
"@openstapps/configuration": "0.8.0",
"conventional-changelog-cli": "2.0.12",
"prepend-file-cli": "1.0.6",
"rimraf": "2.6.3",
"tslint": "5.15.0",
"typescript": "3.4.2"
}
}