mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-04 12:32:57 +00:00
43 lines
1.4 KiB
JSON
43 lines
1.4 KiB
JSON
{
|
|
"name": "@openstapps/minimal-plugin",
|
|
"description": "Minimal Plugin",
|
|
"version": "2.1.0",
|
|
"license": "GPL-3.0-only",
|
|
"author": "Thea Schöbl",
|
|
"contributors": [
|
|
"Jovan Krunić <jovan.krunic@gmail.com>",
|
|
"Rainer Killinger <mail-openstapps@killinger.co>"
|
|
],
|
|
"scripts": {
|
|
"build": "npm run compile",
|
|
"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",
|
|
"compile": "rimraf lib && tsc",
|
|
"documentation": "typedoc --includeVersion --out docs src",
|
|
"lint": "tslint -p tsconfig.json -c tslint.json 'src/**/*.ts'",
|
|
"postversion": "npm run changelog",
|
|
"prepublishOnly": "npm ci && npm run build",
|
|
"preversion": "npm run prepublishOnly",
|
|
"push": "git push && git push origin \"v$npm_package_version\"",
|
|
"start": "node lib/cli.js"
|
|
},
|
|
"dependencies": {
|
|
"@openstapps/api": "workspace:*",
|
|
"@openstapps/core": "workspace:*",
|
|
"@openstapps/core-tools": "workspace:*",
|
|
"@openstapps/logger": "workspace:*",
|
|
"commander": "10.0.0",
|
|
"express": "4.18.2",
|
|
"ts-node": "10.9.1"
|
|
},
|
|
"devDependencies": {
|
|
"@openstapps/configuration": "workspace:*",
|
|
"@types/express": "4.17.16",
|
|
"@types/node": "18.15.3",
|
|
"conventional-changelog-cli": "2.2.2",
|
|
"rimraf": "4.4.0",
|
|
"typedoc": "0.22.18",
|
|
"typescript": "4.4.4"
|
|
}
|
|
}
|