mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 14:32:50 +00:00
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"name": "@openstapps/minimal-plugin",
|
|
"version": "0.0.1",
|
|
"description": "Minimal Plugin",
|
|
"license": "GPL-3.0-only",
|
|
"author": "Wieland Schöbl",
|
|
"contributors": [],
|
|
"scripts": {
|
|
"build": "npm run tslint && npm run compile && npm run documentation",
|
|
"compile": "rimraf lib && tsc && 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'",
|
|
"check-configuration": "openstapps-configuration",
|
|
"documentation": "typedoc --includeDeclarations --excludeExternals --mode modules --out docs src",
|
|
"start": "node lib/cli.js",
|
|
"tslint": "tslint 'src/**/*.ts'",
|
|
"prepublishOnly": "npm ci && npm run build",
|
|
"postversion": "npm run changelog",
|
|
"preversion": "npm run prepublishOnly",
|
|
"push": "git push && git push origin \"v$npm_package_version\""
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/api": "0.22.0",
|
|
"@openstapps/core": "0.35.0",
|
|
"@openstapps/core-tools": "0.14.0",
|
|
"@openstapps/logger": "0.5.0",
|
|
"express": "4.16.4",
|
|
"commander": "5.1.0",
|
|
"ts-node": "8.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.24.0",
|
|
"@types/node": "12.7.1",
|
|
"@types/express": "4.16.1",
|
|
"conventional-changelog-cli": "2.0.23",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "3.0.0",
|
|
"tslint": "5.19.0",
|
|
"typedoc": "0.16.11",
|
|
"typescript": "3.7.5"
|
|
}
|
|
}
|