Files
openstapps/package.json
Karl-Philipp Wulfert cf71e50368 0.14.0
2019-04-30 19:27:40 +02:00

51 lines
1.6 KiB
JSON

{
"name": "@openstapps/configuration",
"version": "0.14.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 --includeDeclarations --excludeExternals --mode modules --out docs src",
"install": "node lib/cli.js -p $INIT_CWD || true",
"prepublishOnly": "npm ci && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"tslint": "tslint '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"
],
"license": "GPL-3.0-only",
"dependencies": {
"@types/node": "10.14.4",
"@types/semver": "6.0.0",
"@types/yaml": "1.0.2",
"chalk": "2.4.2",
"commander": "2.20.0",
"semver": "6.0.0",
"tslint": "5.16.0",
"tslint-eslint-rules": "5.4.0",
"yaml": "1.5.0"
},
"devDependencies": {
"conventional-changelog-cli": "2.0.12",
"prepend-file-cli": "1.0.6",
"rimraf": "2.6.3",
"ts-node": "8.1.0",
"typedoc": "0.14.2",
"typescript": "3.4.3"
},
"peerDependencies": {
"typescript": "^3.4.0"
},
"bin": {
"openstapps-configuration": "lib/cli.js"
}
}