-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.15 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.15 KB
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@rootly/backstage-plugin-entity-processor",
"description": "Rootly Catalog processor Backstage",
"version": "1.3.2",
"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": "git+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-plugin-api": "^1.4.3",
"@backstage/catalog-model": "^1.7.5",
"@backstage/config": "^1.3.4",
"@backstage/plugin-catalog-common": "^1.1.5",
"@backstage/plugin-catalog-node": "^1.19.0",
"@rootly/backstage-plugin-common": "^1.4.0",
"winston": "^3.18.3",
"yn": "^5.1.0"
},
"devDependencies": {
"@backstage/cli": "^0.36.4",
"@backstage/cli-defaults": "^0.1.4",
"@jest/environment-jsdom-abstract": "^30.4.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.19",
"@types/webpack-env": "1.18.8",
"jest": "^30.4.2",
"jest-mock": "30.4.1",
"jsdom": "^27.1.0",
"typescript": "^5.9.3"
},
"resolutions": {
"@babel/runtime": "^7.26.10",
"adm-zip": "^0.6.0",
"ajv@npm:^8.0.0": "npm:^8.18.0",
"ajv@npm:^8.10.0": "npm:^8.18.0",
"ajv@npm:^8.9.0": "npm:^8.18.0",
"bn.js": "^5.2.3",
"body-parser": "^1.20.6",
"brace-expansion": "^5.0.8",
"braces": "^3.0.3",
"cipher-base": "^1.0.5",
"cookie": "^0.7.2",
"cross-spawn": "^7.0.6",
"elliptic": "^6.6.1",
"esbuild": "^0.28.1",
"express": "^4.22.2",
"flatted": "^3.4.2",
"follow-redirects": "^1.16.0",
"form-data": "^4.0.6",
"formidable": "^2.1.3",
"glob": "^10.5.0",
"handlebars": "^4.7.9",
"http-proxy-middleware": "^2.0.10",
"js-yaml": "^4.3.0",
"launch-editor": "^2.14.1",
"lodash": "^4.18.0",
"lodash-es": "^4.18.0",
"micromatch": "^4.0.8",
"minimatch": "^10.2.6",
"nanoid": "^3.3.8",
"node-forge": "^1.4.0",
"on-headers": "^1.1.0",
"path-to-regexp": "^0.1.13",
"pbkdf2": "^3.1.3",
"picomatch": "^4.0.4",
"postcss": "^8.5.18",
"qs": "^6.15.3",
"send": "^0.19.0",
"serve-static": "^1.16.0",
"sha.js": "^2.4.12",
"shell-quote": "^1.9.0",
"svgo": "^2.8.3",
"tar": "^7.5.21",
"tmp": "^0.2.6",
"undici": "^7.28.0",
"uuid": "^11.1.1",
"webpack-dev-server": "^5.2.6",
"websocket-driver": "^0.7.5",
"ws": "^8.21.0",
"yaml": "^2.8.3"
},
"files": [
"dist"
],
"packageManager": "yarn@4.9.2"
}