-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
108 lines (108 loc) · 3.15 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
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
{
"name": "backstage-plugin-api-linter",
"version": "1.0.12",
"description": "API Linter is a quality assurance tool that checks the compliance of API's specifications to Zalando's API rules.",
"main": "src/index.ts",
"publishConfig": {
"access": "public",
"main": "dist/index.esm.js",
"types": "dist/index.d.ts"
},
"backstage": {
"role": "frontend-plugin"
},
"dependencies": {
"@backstage/core-components": "^0.12.0",
"@backstage/core-plugin-api": "^1.0.5",
"@backstage/theme": "^0.2.13",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
"ace-builds": "^1.4.14",
"brace": "^0.11.1",
"react": "^17.0.2",
"react-ace": "^9.5.0",
"react-dom": "^17.0.2",
"react-router-dom": "^6.4.5",
"react-use": "^17.3.2",
"swagger-ui-react": "^4.12.0"
},
"peerDependencies": {
"@backstage/core-components": "^0.12.0",
"@backstage/core-plugin-api": "^1.0.5",
"@backstage/theme": "^0.2.13",
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "4.0.0-alpha.57",
"@types/react": "^17",
"@types/react-dom": "^17",
"react-dom": "^16.13.1 || ^17.0.0"
},
"devDependencies": {
"@backstage/cli": "^0.21.1",
"@backstage/core-app-api": "^1.2.0",
"@backstage/dev-utils": "^1.0.8",
"@backstage/test-utils": "^1.2.2",
"@testing-library/jest-dom": "^5.10.1",
"@testing-library/react": "^12.1.3",
"@testing-library/user-event": "^13.1.8",
"@types/jest": "*",
"@types/node": "*",
"@types/swagger-ui-react": "^4.1.1",
"cross-fetch": "^3.0.6",
"husky": "^8.0.1",
"msw": "^0.35.0"
},
"scripts": {
"build": "backstage-cli package build",
"start": "backstage-cli package start",
"lint": "backstage-cli package lint",
"test": "backstage-cli package test",
"tsc": "tsc",
"test:ci": "backstage-cli test --no-watch --silent --forceExit --detectOpenHandles --no-cache --coverage=false --runInBand",
"diff": "backstage-cli plugin:diff",
"prepack": "backstage-cli package prepack",
"postpack": "backstage-cli package postpack",
"clean": "backstage-cli package clean",
"install:ci": "yarn add [email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zalando/backstage-api-linter-plugin.git"
},
"keywords": [
"api-linter",
"linter",
"javascript",
"typescript",
"zalando",
"API",
"backstage",
"plugin"
],
"author": "Natalya Peixoto [email protected]",
"license": "MIT",
"files": [
"dist"
],
"maintainers": [
"Natalya Peixoto <[email protected]>",
"Ewa <[email protected]>",
"Tronje Krop <[email protected]>"
],
"bugs": {
"url": "https://github.com/zalando/backstage-api-linter-plugin/issues"
},
"homepage": "https://github.com/zalando/backstage-api-linter-plugin#readme",
"contributors": [
{
"name": "Natalya Peixoto",
"email": "[email protected]",
"url": "https://github.com/natalyapeixoto"
},
{
"name": "Tronje Krop",
"email": "[email protected]"
}
]
}