plugin-kubernetes-common: Moves packages/kuberntes-common to plugins as per ADR11

Signed-off-by: Juan Lulkin <jmaiz@spotify.com>
This commit is contained in:
Juan Lulkin
2021-04-15 10:21:25 +02:00
parent f53fba29f6
commit 1cf63d00df
22 changed files with 20 additions and 20 deletions
+49
View File
@@ -0,0 +1,49 @@
{
"name": "@backstage/plugin-kubernetes-common",
"description": "Common functionalities for kubernetes, to be shared between kubernetes and kubernetes-backend plugin",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/backstage/backstage",
"directory": "plugin/kubernetes-common"
},
"keywords": [
"techdocs",
"kubernetes"
],
"files": [
"dist"
],
"scripts": {
"build": "backstage-cli build --outputs cjs,types",
"lint": "backstage-cli lint",
"test": "backstage-cli test",
"prepack": "backstage-cli prepack",
"postpack": "backstage-cli postpack",
"clean": "backstage-cli clean"
},
"bugs": {
"url": "https://github.com/backstage/backstage/issues"
},
"dependencies": {
"@backstage/catalog-model": "^0.7.6",
"@kubernetes/client-node": "^0.14.0"
},
"devDependencies": {
"@backstage/cli": "^0.6.5"
},
"jest": {
"roots": [
".."
]
}
}