forked from AntoineDao/backstage-provider-kubernetes
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@antoinedao/backstage-provider-kubernetes",
"description": "A Backstage catalog provider and processor for Kubernetes",
"version": "0.0.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin-module"
},
"repository": {
"type": "git",
"url": "https://github.com/antoinedao/backstage-provider-kubernetes"
},
"keywords": [
"backstage"
],
"scripts": {
"build": "backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean",
"start": "backstage-cli package start",
"release": "semantic-release",
"tsc": "tsc"
},
"dependencies": {
"@backstage/backend-common": "^0.17.0",
"@backstage/backend-tasks": "^0.5.0",
"@backstage/catalog-client": "^1.2.0",
"@backstage/catalog-model": "^1.1.4",
"@backstage/config": "^1.0.5",
"@backstage/errors": "^1.1.4",
"@backstage/plugin-catalog-backend": "^1.6.0",
"@backstage/plugin-kubernetes-backend": "^0.9.2",
"@backstage/types": "^1.0.2",
"@kubernetes/client-node": "^0.18.1",
"crypto-js": "^4.1.1",
"link2aws": "^1.0.8",
"lodash": "^4.17.21",
"p-limit": "^3.0.2",
"uuid": "^9.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@backstage/cli": "^0.22.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/github": "^8.0.7",
"@types/crypto-js": "^4.1.1",
"@types/fs-extra": "^11.0.1",
"@types/link2aws": "^1.0.0",
"@types/lodash": "^4.14.151",
"@types/node-fetch": "^2.6.3",
"@types/uuid": "^9.0.1",
"aws-sdk-client-mock": "^0.6.2",
"commitizen": "^4.3.0",
"eslint": "^8.38.0",
"eslint-plugin-typescript": "^0.14.0",
"semantic-release": "^21.0.1",
"yaml": "^1.9.2"
},
"files": [
"dist",
"config.d.ts"
],
"configSchema": "config.d.ts"
}