Files
openstapps/package.json
Rainer Killinger 448b5631ad 0.32.0
2022-06-27 13:52:54 +02:00

61 lines
2.1 KiB
JSON

{
"name": "@openstapps/configuration",
"version": "0.32.0",
"description": "A collection of configuration base files for StApps projects.",
"scripts": {
"build": "npm run lint && 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 --entryPointStrategy expand 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",
"lint": "eslint -c .eslintrc.json --ignore-path .eslintignore --ext .ts src/"
},
"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>",
"Thea Schöbl"
],
"license": "GPL-3.0-only",
"dependencies": {
"@types/node": "14.18.18",
"@types/semver": "7.3.9",
"@types/yaml": "1.9.7",
"chalk": "4.1.2",
"commander": "9.3.0",
"semver": "7.3.7",
"yaml": "1.10.2"
},
"devDependencies": {
"@openstapps/eslint-config": "1.1.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"conventional-changelog-cli": "2.2.2",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-unicorn": "42.0.0",
"prepend-file-cli": "1.0.6",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"typedoc": "0.22.17",
"typescript": "4.4.4"
},
"peerDependencies": {
"typescript": "4.4.4"
},
"bin": {
"openstapps-configuration": "lib/cli.js"
}
}