mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-03 12:02:53 +00:00
53 lines
1.7 KiB
JSON
53 lines
1.7 KiB
JSON
{
|
|
"name": "@openstapps/configuration",
|
|
"version": "0.29.0",
|
|
"description": "A collection of configuration base files for StApps projects.",
|
|
"scripts": {
|
|
"build": "npm run tslint && npm run compile",
|
|
"compile": "rimraf lib && tsc --outDir lib && prepend lib/cli.js '#!/usr/bin/env node\n'",
|
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md && git commit -m 'docs: update changelog'",
|
|
"documentation": "typedoc --out docs --readme README.md --includeVersion --listInvalidSymbolLinks src",
|
|
"prepublishOnly": "npm ci && npm run build",
|
|
"postversion": "npm run changelog",
|
|
"preversion": "npm run prepublishOnly",
|
|
"push": "git push && git push origin \"v$npm_package_version\"",
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"tslint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@gitlab.com:openstapps/configuration.git"
|
|
},
|
|
"author": "Karl-Philipp Wulfert <krlwlfrt@gmail.com>",
|
|
"contributors": [
|
|
"Anselm Rochus Stordeur",
|
|
"Jovan Krunic",
|
|
"Rainer Killinger <mail-openstapps@killinger.co>"
|
|
],
|
|
"license": "GPL-3.0-only",
|
|
"dependencies": {
|
|
"@types/node": "14.18.0",
|
|
"@types/semver": "7.3.9",
|
|
"@types/yaml": "1.9.7",
|
|
"chalk": "4.1.2",
|
|
"commander": "8.3.0",
|
|
"semver": "7.3.5",
|
|
"tslint": "6.1.3",
|
|
"tslint-eslint-rules": "5.4.0",
|
|
"yaml": "1.10.2"
|
|
},
|
|
"devDependencies": {
|
|
"conventional-changelog-cli": "2.1.1",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "3.0.2",
|
|
"typedoc": "0.22.10",
|
|
"typescript": "4.4.3"
|
|
},
|
|
"peerDependencies": {
|
|
"typescript": ">=3.8.3"
|
|
},
|
|
"bin": {
|
|
"openstapps-configuration": "lib/cli.js"
|
|
}
|
|
}
|