48aacfbe17
* 'master' of github.com:spotify/backstage: (89 commits) Use URLSearchParams Use location?.type once more chore(catalog): clean up CatalogTable, use only Entity chore(catalog): clean up ComponentPage, use only Entity chore(catalog): tweak getEntityByName a bit, handle 404s properly chore(catalog/star): only set the cache if there are entries from the response chore(catalog/star): added a comment about why we are using a simple cache here chore(catalog/star): removing msw dependency, wrong branch chore(catalog): consistent use of named exports chore(msw): Added msw dependency chore(catalog/star): fixing issues with unmocked deps chore(catalog/star): adding a simple cache to stop flicker as a stopgap chore(catalog/star): reworking how the starring works, it now stores uri sort of references for entities fix(core): Tabs useEffect dependency list docs: format with prettier (#1218) Optional namespace and name as one part of URL docs/auth: added overview, oauth description and glossary docs: added plantuml generation script docs: added prettier config Remove deleted UserBadge component from Sidebar story ...
55 lines
1.5 KiB
JSON
55 lines
1.5 KiB
JSON
{
|
|
"name": "@backstage/test-utils",
|
|
"description": "Utilities to test Backstage plugins and apps.",
|
|
"version": "0.1.1-alpha.7",
|
|
"private": false,
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"main": "dist/index.esm.js",
|
|
"types": "dist/index.d.ts"
|
|
},
|
|
"homepage": "https://backstage.io",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/spotify/backstage",
|
|
"directory": "packages/test-utils"
|
|
},
|
|
"keywords": [
|
|
"backstage"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"main": "dist/index.esm.js",
|
|
"main:src": "src/index.ts",
|
|
"types": "src/index.ts",
|
|
"scripts": {
|
|
"build": "backstage-cli build --outputs types,esm",
|
|
"lint": "backstage-cli lint",
|
|
"test": "backstage-cli test",
|
|
"prepack": "backstage-cli prepack",
|
|
"postpack": "backstage-cli postpack",
|
|
"clean": "backstage-cli clean"
|
|
},
|
|
"dependencies": {
|
|
"@backstage/cli": "^0.1.1-alpha.7",
|
|
"@backstage/core-api": "^0.1.1-alpha.7",
|
|
"@backstage/test-utils-core": "^0.1.1-alpha.7",
|
|
"@backstage/theme": "^0.1.1-alpha.7",
|
|
"@material-ui/core": "^4.9.1",
|
|
"@testing-library/jest-dom": "^5.7.0",
|
|
"@testing-library/react": "^9.3.2",
|
|
"@testing-library/user-event": "^10.2.4",
|
|
"@types/react": "^16.9",
|
|
"react": "^16.12.0",
|
|
"react-dom": "^16.12.0",
|
|
"react-router": "^6.0.0-alpha.5",
|
|
"react-router-dom": "^6.0.0-alpha.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.2.2",
|
|
"@types/node": "^12.0.0"
|
|
},
|
|
"files": [
|
|
"dist/**/*.{js,d.ts}"
|
|
]
|
|
}
|