-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.92 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
{
"name": "@rootly/backstage-plugin-entity-processor",
"description": "Rootly Catalog processor Backstage",
"version": "1.0.0-beta.8",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"license": "MIT",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin-module",
"pluginId": "catalog",
"pluginPackage": "rootly-entity-processor"
},
"homepage": "https://github.com/rootlyhq/backstage-plugin-entity-processor",
"repository": {
"type": "git",
"url": "https://github.com/rootlyhq/backstage-plugin-entity-processor.git"
},
"keywords": [
"backstage",
"plugin",
"rootly"
],
"scripts": {
"start": "yarn tsc && backstage-cli package start",
"build": "yarn tsc && backstage-cli package build",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"clean": "backstage-cli package clean",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack"
},
"dependencies": {
"@backstage/backend-common": "^0.25.0",
"@backstage/backend-defaults": "^0.5.2",
"@backstage/backend-plugin-api": "^1.0.1",
"@backstage/catalog-model": "^1.7.0",
"@backstage/config": "^1.2.0",
"@backstage/plugin-catalog-common": "^1.1.0",
"@backstage/plugin-catalog-node": "^1.13.1",
"@rjsf/core": "^5.14.3",
"@rootly/backstage-plugin-common": "^1.0.0-beta.6",
"node-fetch": "^2.6.7",
"winston": "^3.2.1",
"yn": "^4.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@backstage/cli": "^0.28.0",
"@types/node": "^20.9.2",
"@types/node-fetch": "2.6.11",
"@types/supertest": "^2.0.12",
"@types/webpack-env": "1.18.4",
"jest-mock": "29.7.0",
"msw": "^1.0.0",
"supertest": "^6.2.4",
"typescript": "^4.8.4"
},
"files": [
"dist"
],
"packageManager": "[email protected]"
}