forked from dweber019/backstage-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "@dweber019/backstage-plugin-api-docs-module-wsdl-backend",
"description": "Additional functionalities for the api-docs plugin that renders the output of WSDL",
"homepage": "https://github.com/dweber019/backstage-plugins/tree/main/plugins/api-docs-module-wsdl",
"repository": {
"type": "git",
"url": "https://github.com/dweber019/backstage-plugins.git",
"directory": "plugins/api-docs-module-wsdl-backend"
},
"license": "MIT",
"version": "0.0.15",
"main": "src/index.ts",
"types": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "backend-plugin",
"pluginId": "api-docs-module-wsdl",
"pluginPackages": [
"@dweber019/backstage-plugin-api-docs-module-wsdl",
"@dweber019/backstage-plugin-api-docs-module-wsdl-backend"
]
},
"scripts": {
"start": "backstage-cli package start",
"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"
},
"dependencies": {
"@backstage/backend-common": "^0.24.0",
"@backstage/backend-plugin-api": "^0.8.0",
"@backstage/catalog-client": "^1.6.6",
"@backstage/catalog-model": "^1.6.0",
"@types/express": "^4.17.6",
"cross-fetch": "^3.1.5",
"express": "^4.18.1",
"express-promise-router": "^4.1.0",
"leasot": "^12.0.0",
"saxon-js": "^2.6.0",
"winston": "^3.2.1",
"xslt3": "^2.6.0",
"yn": "^4.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.27.0",
"@types/supertest": "^6.0.0",
"msw": "^1.0.0",
"supertest": "^7.0.0"
},
"files": [
"dist"
]
}