mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 22:42:54 +00:00
43 lines
1.5 KiB
JSON
43 lines
1.5 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.16.0",
|
|
"@openstapps/core": "0.27.0",
|
|
"@openstapps/core-tools": "0.8.0",
|
|
"@openstapps/logger": "0.4.0",
|
|
"@types/node": "12.7.1",
|
|
"commander": "3.0.1",
|
|
"express": "4.17.0",
|
|
"express-promise-router": "3.0.3",
|
|
"ts-node": "8.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "0.21.1",
|
|
"@types/express": "4.17.1",
|
|
"conventional-changelog-cli": "2.0.23",
|
|
"prepend-file-cli": "1.0.6",
|
|
"rimraf": "3.0.0",
|
|
"tslint": "5.19.0",
|
|
"typedoc": "0.15.0",
|
|
"typescript": "3.6.2"
|
|
}
|
|
}
|