extract test-utils as its own package for use with plugins, etc.

This commit is contained in:
Paul Marbach
2020-04-06 14:14:28 -04:00
parent 4330c7cf07
commit 927f54129a
55 changed files with 384 additions and 140 deletions
+33
View File
@@ -0,0 +1,33 @@
{
"name": "@backstage/theme",
"description": "material-ui theme for use with Backstage.",
"version": "0.1.1-alpha.2",
"private": false,
"publishConfig": {
"access": "public"
},
"homepage": "https://backstage.io",
"repository": {
"type": "git",
"url": "https://github.com/spotify/backstage",
"directory": "packages/theme"
},
"keywords": [
"backstage"
],
"license": "Apache-2.0",
"main": "dist/index.cjs.js",
"types": "dist/index.d.ts",
"scripts": {
"build:watch": "backstage-cli plugin:build --watch",
"build": "backstage-cli build-cache -- backstage-cli plugin:build",
"lint": "backstage-cli lint"
},
"devDependencies": {
"@backstage/cli": "^0.1.1-alpha.2",
"@material-ui/core": "^4.9.1"
},
"peerDependencies": {
"@material-ui/core": "^4.9.1"
}
}