diff --git a/.github/workflows/cli.yml b/.github/workflows/cli.yml
index 6e4fdad214..158310b5ea 100644
--- a/.github/workflows/cli.yml
+++ b/.github/workflows/cli.yml
@@ -2,13 +2,9 @@ name: CLI Test
on:
pull_request:
- paths:
- - '.github/workflows/cli.yml'
- - 'packages/cli/**'
- - 'packages/create-app/**'
- - 'packages/core/**'
- - 'packages/core-api/**'
- - 'yarn.lock'
+ paths-ignore:
+ - 'microsite/**'
+
jobs:
build:
diff --git a/.github/workflows/frontend.yml b/.github/workflows/frontend.yml
index d7a862806a..dc65b987a8 100644
--- a/.github/workflows/frontend.yml
+++ b/.github/workflows/frontend.yml
@@ -2,8 +2,8 @@ name: Frontend CI
on:
pull_request:
- paths:
- - '!microsite/**'
+ paths-ignore:
+ - 'microsite/**'
jobs:
build:
runs-on: ubuntu-latest
@@ -45,12 +45,12 @@ jobs:
run: git diff --quiet origin/master HEAD -- yarn.lock
continue-on-error: true
- - name: verify doc links
- run: node docs/verify-links.js
-
- name: yarn install
run: yarn install --frozen-lockfile
+ - name: verify doc links
+ run: node docs/verify-links.js
+
- name: lint
run: yarn lerna -- run lint --since origin/master
diff --git a/.github/workflows/microsite-build-check.yml b/.github/workflows/microsite-build-check.yml
new file mode 100644
index 0000000000..41f43399ca
--- /dev/null
+++ b/.github/workflows/microsite-build-check.yml
@@ -0,0 +1,52 @@
+name: Build microsite
+
+on:
+ pull_request:
+ paths:
+ - '.github/workflows/microsite-build-check.yml'
+ - 'microsite/**'
+ - 'docs/**'
+
+jobs:
+ build-microsite:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x]
+
+ env:
+ CI: true
+ NODE_OPTIONS: --max-old-space-size=4096
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: find location of global yarn cache
+ id: yarn-cache
+ run: echo "::set-output name=dir::$(yarn cache dir)"
+
+ - name: cache global yarn cache
+ uses: actions/cache@v2
+ with:
+ path: ${{ steps.yarn-cache.outputs.dir }}
+ key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
+ restore-keys: |
+ ${{ runner.os }}-yarn-
+
+ - name: cache node_modules
+ uses: actions/cache@v2
+ with:
+ path: node_modules
+ key: ${{ runner.os }}-modules-${{ hashFiles('yarn.lock') }}
+
+ - name: use node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+ registry-url: https://registry.npmjs.org/ # Needed for auth
+
+ - name: yarn install
+ run: yarn install --frozen-lockfile
+
+ - name: build microsite
+ run: yarn workspace backstage-microsite build
diff --git a/.github/workflows/storybook-deploy.yml b/.github/workflows/microsite-with-storybook-deploy.yml
similarity index 70%
rename from .github/workflows/storybook-deploy.yml
rename to .github/workflows/microsite-with-storybook-deploy.yml
index 33ffba5ccd..a4828ba55f 100644
--- a/.github/workflows/storybook-deploy.yml
+++ b/.github/workflows/microsite-with-storybook-deploy.yml
@@ -1,16 +1,17 @@
-name: Deploy Storybook
+name: Deploy Microsite and Storybook
on:
push:
branches:
- master
paths:
- - '.github/workflows/storybook-deploy.yml'
+ - '.github/workflows/microsite-with-storybook-deploy.yml'
- 'packages/storybook/**'
- 'packages/core/src/**'
+ - 'microsite/**'
jobs:
- deploy-storybook:
+ deploy-microsite-and-storybook:
runs-on: ubuntu-latest
strategy:
@@ -26,6 +27,7 @@ jobs:
- name: find location of global yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
+
- name: cache global yarn cache
uses: actions/cache@v2
with:
@@ -33,6 +35,7 @@ jobs:
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
+
- name: cache node_modules
uses: actions/cache@v2
with:
@@ -44,13 +47,25 @@ jobs:
with:
node-version: ${{ matrix.node-version }}
registry-url: https://registry.npmjs.org/ # Needed for auth
+
- name: yarn install
run: yarn install --frozen-lockfile
+
+ - name: build microsite
+ run: yarn workspace backstage-microsite build
+
- name: build storybook
run: yarn workspace storybook build-storybook
- - name: deploy storybook to gh-pages
+
+ - name: move storybook dist into microsite
+ run: mv packages/storybook/dist/ microsite/build/backstage/storybook
+
+ - name: Check the build output
+ run: ls microsite/build/backstage && ls microsite/build/backstage/storybook
+
+ - name: Deploy both microsite and storybook to gh-pages
uses: JamesIves/github-pages-deploy-action@3.4.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
- FOLDER: packages/storybook/dist
+ FOLDER: microsite/build/backstage
diff --git a/.gitignore b/.gitignore
index 9884edf96e..743561c3b6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -90,6 +90,9 @@ typings/
.nuxt
dist
+# Microsite build output
+microsite/build
+
# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and not Next.js
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c67eae825..99f03e3fa5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -8,6 +8,18 @@ If you encounter issues while upgrading to a newer version, don't hesitate to re
> Collect changes for the next release below
+### @backstage/create-app
+
+- Many plugins have been added to the catalog and will for now be required to be added to separate apps as well. This will be solved as [#1536](https://github.com/spotify/backstage/issues/1536) gets sorted out, but for now you may need to install some plugins just to get pages to work.
+
+### @backstage/catalog-backend
+
+- Added the possibility to add static locations via `app-config.yaml`. This changed the signature of `new LocationReaders(logger)` inside `packages/backend/src/plugins/catalog.ts` to `new LocationReaders({config, logger})`. [#1890](https://github.com/spotify/backstage/pull/1890)
+
+### @backstage/theme
+
+- Changed the type signature of the palette, removing `sidebar: string` and adding `navigation: { background: string; indicator: string}`. [#1880](https://github.com/spotify/backstage/pull/1880)
+
## v0.1.1-alpha.18
### @backstage/catalog-backend
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index cf7622d692..5b8febd1d2 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -1,4 +1,7 @@
-# Contributing
+---
+id: CONTRIBUTING
+title: Contributing
+---
Our vision for Backstage is for it to become the trusted standard toolbox (read: UX layer) for the open source infrastructure landscape. Think of it like Kubernetes for developer experience. We realize this is an ambitious goal. We canโt do it alone.
@@ -38,7 +41,7 @@ The current documentation is very limited. Help us make the `/docs` folder come
## Contribute to Storybook
-We think the best way to ensure different plugins provide a consistent experience is through a solid set of reusable UI/UX components. Backstage uses [Storybook](http://storybook.backstage.io).
+We think the best way to ensure different plugins provide a consistent experience is through a solid set of reusable UI/UX components. Backstage uses [Storybook](http://backstage.io/storybook).
Either help us [create new components](https://github.com/spotify/backstage/labels/help%20wanted) or improve stories for the existing ones (look for files with `*.stories.tsx`).
@@ -60,7 +63,35 @@ Have you started using Backstage? Adding your company to [ADOPTERS](ADOPTERS.md)
# Get Started!
-So...feel ready to jump in? Let's do this. Head over to the [Getting Started guide](https://github.com/spotify/backstage#getting-started) ๐๐ป๐ฏ
+So...feel ready to jump in? Let's do this. ๐๐ป๐ฏ
+
+To run a Backstage app, you will need to have the following installed:
+
+- [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
+- [NodeJS](https://nodejs.org/en/download/) - Active LTS Release, currently v12
+- [yarn](https://classic.yarnpkg.com/en/docs/install)
+
+After cloning this repo, open a terminal window and start the example app using the following commands from the project root:
+
+```bash
+yarn install # Install dependencies
+
+yarn start # Start dev server, use --check to enable linting and type-checks
+```
+
+The final `yarn start` command should open a local instance of Backstage in your browser, otherwise open one of the URLs printed in the terminal.
+
+Depending on the work you're doing, you often also want to run the example backend. Start the backend in a separate terminal session using the following:
+
+```bash
+cd packages/backend
+
+yarn start
+
+yarn lerna run mock-data # Populate the backend with mock data
+```
+
+And that's it! You are good to go ๐
If you need help, just jump into our [Discord chatroom](https://discord.gg/MUpMjP2).
diff --git a/README.md b/README.md
index 56932a1741..9a1622cda7 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
+
# [Backstage](https://backstage.io)
@@ -29,7 +29,7 @@ For more information go to [backstage.io](https://backstage.io) or join our [Dis
We created Backstage about 4 years ago. While our internal version of Backstage has had the benefit of time to mature and evolve, the first iteration of our open source version is still nascent. We are envisioning three phases of the project and we have already begun work on various aspects of these phases:
-- ๐ฃ **Phase 1:** Extensible frontend platform (Done โ ) - You will be able to easily create a single consistent UI layer for your internal infrastructure and tools. A set of reusable [UX patterns and components](http://storybook.backstage.io) help ensure a consistent experience between tools.
+- ๐ฃ **Phase 1:** Extensible frontend platform (Done โ ) - You will be able to easily create a single consistent UI layer for your internal infrastructure and tools. A set of reusable [UX patterns and components](http://backstage.io/storybook) help ensure a consistent experience between tools.
- ๐ข **Phase 2:** Service Catalog ([alpha released](https://backstage.io/blog/2020/06/22/backstage-service-catalog-alpha)) - With a single catalog, Backstage makes it easy for a team to manage ten services โ and makes it possible for your company to manage thousands of them. Developers can get a uniform overview of all their software and related resources, regardless of how and where they are running, as well as an easy way to onboard and manage those resources.
@@ -49,27 +49,33 @@ The Backstage platform consists of a number of different components:
- [**proxy**](https://github.com/spotify/backstage/tree/master/plugins/proxy-backend) - Terminates HTTPS and exposes any RESTful API to Plugins.
- **identity** - A backend service that holds your organisation's metadata.
-## Getting started
+## Getting Started
-To run a Backstage app, you will need to have the following installed:
+There are two different ways to get started with Backstage, either by creating a standalone app, or by cloning this repo. Which method you use depends on what you're planning to do.
-- [git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
-- [NodeJS](https://nodejs.org/en/download/) - Active LTS Release, currently v12
-- [yarn](https://classic.yarnpkg.com/en/docs/install)
+Creating a standalone instance makes it simpler to customize the application for your needs whilst staying up to date with the project. You will also depend on `@backstage` packages from NPM, making the project much smaller. This is the recommended approach if you want to kick the tyres of Backstage or setup your own instance.
-After cloning this repo, open a terminal window and start the example app using the following commands from the project root:
+On the other hand, if you want to contribute plugins or to the project in general, it's easier to fork and clone this project. That will let you stay up to date with the latest changes, and gives you an easier path to make Pull Requests towards this repo.
+
+### Creating a Standalone App
+
+Backstage provides the `@backstage/create-app` package to scaffold standalone instances of Backstage. You will need to have
+[NodeJS](https://nodejs.org/en/download/) Active LTS Release installed
+(currently v12), and [yarn](https://classic.yarnpkg.com/en/docs/install). You will also need to have [Docker](https://docs.docker.com/engine/install/) installed to use some features like Software Templates and TechDocs.
+
+Using `npx` you can then run the following to create an app in a chosen subdirectory of your current working directory:
```bash
-yarn install # Install dependencies
-
-yarn start # Start dev server, use --check to enable linting and type-checks
+npx @backstage/create-app
```
-The final `yarn start` command should open a local instance of Backstage in your browser, otherwise open one of the URLs printed in the terminal.
+You will be taken through a wizard to create your app, and the output should look something like this. You can read more about this process [here](docs/getting-started/create-an-app.md)
-And that's it! You are good to go ๐
+### Contributing to Backstage
-### Next step
+You can read more in our [CONTRIBUTING.md](./CONTRIBUTING.md#get-started) guide, which can help you get setup with a Backstage development environment.
+
+### Next steps
Take a look at the [Getting Started](docs/getting-started/index.md) guide to learn how to set up Backstage, and how to develop on the platform.
@@ -77,14 +83,9 @@ Take a look at the [Getting Started](docs/getting-started/index.md) guide to lea
- [Main documentation](docs/README.md)
- [Service Catalog](docs/features/software-catalog/index.md)
-- [Create a Backstage App](docs/getting-started/create-an-app.md)
- [Architecture](docs/overview/architecture-terminology.md) ([Decisions](docs/architecture-decisions/index.md))
- [Designing for Backstage](docs/dls/design.md)
-- [Storybook - UI components](http://storybook.backstage.io)
-
-## Contributing
-
-We would love your help in building Backstage! See [CONTRIBUTING](CONTRIBUTING.md) for more information.
+- [Storybook - UI components](http://backstage.io/storybook)
## Community
diff --git a/app-config.yaml b/app-config.yaml
index 998d092759..99415b5b41 100644
--- a/app-config.yaml
+++ b/app-config.yaml
@@ -4,11 +4,15 @@ app:
backend:
baseUrl: http://localhost:7000
- listen: 0.0.0.0:7000
+ listen:
+ port: 7000
cors:
origin: http://localhost:3000
methods: [GET, POST, PUT, DELETE]
credentials: true
+ database:
+ client: sqlite3
+ connection: ':memory:'
proxy:
'/circleci/api':
@@ -16,6 +20,15 @@ proxy:
changeOrigin: true
pathRewrite:
'^/proxy/circleci/api/': '/'
+ '/jenkins/api':
+ target: 'http://localhost:8080'
+ changeOrigin: true
+ headers:
+ Authorization:
+ $secret:
+ env: JENKINS_BASIC_AUTH_HEADER
+ pathRewrite:
+ '^/proxy/jenkins/api/': '/'
organization:
name: Spotify
@@ -26,6 +39,17 @@ techdocs:
sentry:
organization: spotify
+rollbar:
+ organization: spotify
+ accountToken:
+ $secret:
+ env: ROLLBAR_ACCOUNT_TOKEN
+
+newrelic:
+ api:
+ baseUrl: 'https://api.newrelic.com/v2'
+ key: NEW_RELIC_REST_API_KEY
+
auth:
providers:
google:
diff --git a/docs/FAQ.md b/docs/FAQ.md
index 7d568a840e..d230e682a4 100644
--- a/docs/FAQ.md
+++ b/docs/FAQ.md
@@ -1,4 +1,7 @@
-# FAQ
+---
+id: FAQ
+title: FAQ
+---
## Product FAQ:
@@ -14,8 +17,7 @@ brand.
No, but it can be! Backstage is designed to be a developer portal for all your
infrastructure tooling, services, and documentation. So, it's not a monitoring
platform โ but that doesn't mean you can't integrate a monitoring tool into
-Backstage by writing
-[a plugin](/docs/FAQ.md#what-is-a-plugin-in-backstage).
+Backstage by writing [a plugin](#what-is-a-plugin-in-backstage).
### How is Backstage licensed?
@@ -36,12 +38,11 @@ more, read our blog post,
Yes, we've already started releasing open source versions of some of the plugins
we use here, and we'll continue to do so.
-[Plugins](/docs/FAQ.md#what-is-a-plugin-in-backstage) are the
-building blocks of functionality in Backstage. We have over 120 plugins inside
-Spotify โ many of those are specialized for our use, so will remain internal and
-proprietary to us. But we estimate that about a third of our existing plugins
-make good open source candidates. (And we'll probably end up writing some brand
-new ones, too.)
+[Plugins](#what-is-a-plugin-in-backstage) are the building blocks of
+functionality in Backstage. We have over 120 plugins inside Spotify โ many of
+those are specialized for our use, so will remain internal and proprietary to
+us. But we estimate that about a third of our existing plugins make good open
+source candidates. (And we'll probably end up writing some brand new ones, too.)
### What's the roadmap for Backstage?
@@ -91,21 +92,31 @@ Node.js and GraphQL.
### What is the end-to-end user flow? The happy path story.
There are three main user profiles for Backstage: the integrator, the
-contributor, and the software engineer.
+contributor, and the software engineer.
-The **integrator** hosts the Backstage app and configures which plugins are available to use in the app.
+The **integrator** hosts the Backstage app and configures which plugins are
+available to use in the app.
The **contributor** adds functionality to the app by writing plugins.
-The **software engineer** uses the app's functionality and interacts with its plugins.
+The **software engineer** uses the app's functionality and interacts with its
+plugins.
### What is a "plugin" in Backstage?
-Plugins are what provide the feature functionality in Backstage. They are used to integrate different systems into Backstage's frontend, so that the developer gets a consistent UX, no matter what tool or service is being accessed on the other side.
+Plugins are what provide the feature functionality in Backstage. They are used
+to integrate different systems into Backstage's frontend, so that the developer
+gets a consistent UX, no matter what tool or service is being accessed on the
+other side.
-Each plugin is treated as a self-contained web app and can include almost any type of content. Plugins all use a common set of platform APIs and reusable UI components. Plugins can fetch data either from the backend or an API exposed through the proxy.
+Each plugin is treated as a self-contained web app and can include almost any
+type of content. Plugins all use a common set of platform APIs and reusable UI
+components. Plugins can fetch data either from the backend or an API exposed
+through the proxy.
-Learn more about [the different components](https://github.com/spotify/backstage#overview) that make up Backstage.
+Learn more about
+[the different components](https://github.com/spotify/backstage#overview) that
+make up Backstage.
### Do I have to write plugins in TypeScript?
@@ -127,7 +138,15 @@ can browse and search for all available plugins.
### Which plugin is used the most at Spotify?
-By far, our most-used plugin is our TechDocs plugin, which we use for creating technical documentation. Our philosophy at Spotify is to treat "docs like code", where you write documentation using the same workflow as you write your code. This makes it easier to create, find, and update documentation. We hope to release [the open source version](https://github.com/spotify/backstage/issues/687) in the future. (See also: "[Will Spotify's internal plugins be open sourced, too?](/docs/FAQ.md#will-spotifys-internal-plugins-be-open-sourced-too)" above)
+By far, our most-used plugin is our TechDocs plugin, which we use for creating
+technical documentation. Our philosophy at Spotify is to treat "docs like code",
+where you write documentation using the same workflow as you write your code.
+This makes it easier to create, find, and update documentation. We hope to
+release
+[the open source version](https://github.com/spotify/backstage/issues/687) in
+the future. (See also:
+"[Will Spotify's internal plugins be open sourced, too?](#will-spotifys-internal-plugins-be-open-sourced-too)"
+above)
### Are you planning to have plugins baked into the repo? Or should they be developed in separate repos?
@@ -135,10 +154,10 @@ Contributors can add open source plugins to the plugins directory in
[this monorepo](https://github.com/spotify/backstage). Integrators can then
configure which open source plugins are available to use in their instance of
the app. Open source plugins are downloaded as npm packages published in the
-open source repository. While we encourage using the open source model, we
-know there are cases where contributors might want to experiment internally or
-keep their plugins closed source. Contributors writing closed source plugins
-should develop them in the plugins directory in their own Backstage repository.
+open source repository. While we encourage using the open source model, we know
+there are cases where contributors might want to experiment internally or keep
+their plugins closed source. Contributors writing closed source plugins should
+develop them in the plugins directory in their own Backstage repository.
Integrators also configure closed source plugins locally from the monorepo.
### Any plans for integrating with other repository managers, such as GitLab or Bitbucket?
@@ -149,7 +168,8 @@ stage. Hosting this project on GitHub does not exclude integrations with
alternatives, such as
[GitLab](https://github.com/spotify/backstage/issues?q=is%3Aissue+is%3Aopen+GitLab)
or Bitbucket. We believe that in time there will be plugins that will provide
-functionality for these tools as well. Hopefully, contributed by the community! Also note, implementations of Backstage can be hosted wherever you feel suits
+functionality for these tools as well. Hopefully, contributed by the community!
+Also note, implementations of Backstage can be hosted wherever you feel suits
your needs best.
### Who maintains Backstage?
@@ -165,8 +185,8 @@ maintains Backstage in your own environment.
### Does Spotify provide a managed version of Backstage?
-No, this is not a service offering. We build the piece of software, and
-someone in your infrastructure team is responsible for
+No, this is not a service offering. We build the piece of software, and someone
+in your infrastructure team is responsible for
[deploying](https://github.com/spotify/backstage/blob/master/DEPLOYMENT.md) and
maintaining it.
@@ -186,16 +206,16 @@ Please report sensitive security issues via Spotify's
No. Backstage does not collect any telemetry from any third party using the
platform. Spotify, and the open source community, does have access to
[GitHub Insights](https://github.com/features/insights), which contains
-information such as contributors, commits, traffic, and dependencies.
-Backstage is an open platform, but you are in control of your own data. You
-control who has access to any data you provide to your version of Backstage and
-who that data is shared with.
+information such as contributors, commits, traffic, and dependencies. Backstage
+is an open platform, but you are in control of your own data. You control who
+has access to any data you provide to your version of Backstage and who that
+data is shared with.
### Can Backstage be used to build something other than a developer portal?
-Yes. The core frontend framework could be used for building any large-scale
-web application where (1) multiple teams are building separate parts of the app,
-and (2) you want the overall experience to be consistent. That being said, in
+Yes. The core frontend framework could be used for building any large-scale web
+application where (1) multiple teams are building separate parts of the app, and
+(2) you want the overall experience to be consistent. That being said, in
[Phase 2](https://github.com/spotify/backstage#project-roadmap) of the project
we will add features that are needed for developer portals and systems for
managing software ecosystems. Our ambition will be to keep Backstage modular.
diff --git a/docs/README.md b/docs/README.md
index cdbfbc5578..9bbc69ca6d 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -4,99 +4,100 @@
really ๐) you find broken links or missing content, please create an issue or,
better yet, a pull request.
+# Plugins
+
- Overview
- [What is Backstage?](overview/what-is-backstage.md)
- [Backstage architecture](overview/architecture-overview.md)
- [Architecture and terminology](overview/architecture-terminology.md)
- [Roadmap](overview/roadmap.md)
- - Getting started
- - [Running Backstage locally](getting-started/index.md)
- - [Installation](getting-started/installation.md)
- - [Local development](getting-started/development-environment.md)
- - [Demo deployment](https://backstage-demo.roadie.io)
- - Production deployments
- - [Create an App](getting-started/create-an-app.md)
- - App configuration
- - [Configuring App with plugins](getting-started/configure-app-with-plugins.md)
- - [Customize the look-and-feel of your App](getting-started/app-custom-theme.md)
- - Deployment scenarios
- - [Kubernetes](getting-started/deployment-k8s.md)
- - [Other](getting-started/deployment-other.md)
- - Features
- - Software Catalog
- - [Overview](features/software-catalog/index.md)
- - [System model](features/software-catalog/system-model.md)
- - [YAML File Format](features/software-catalog/descriptor-format.md)
- - [Populating the catalog](features/software-catalog/populating.md)
- - [Extending the model](features/software-catalog/extending-the-model.md)
- - [External integrations](features/software-catalog/external-integrations.md)
- - [API](features/software-catalog/api.md)
- - Software creation templates
- - [Overview](features/software-templates/index.md)
- - [Adding templates](features/software-templates/adding-templates.md)
- - Extending the Scaffolder:
- - [Overview](features/software-templates/extending/index.md)
- - [Create your own Templater](features/software-templates/extending/create-your-own-templater.md)
- - [Create your own Publisher](features/software-templates/extending/create-your-own-publisher.md)
- - [Create your own Preparer](features/software-templates/extending/create-your-own-preparer.md)
- - Docs-like-code
- - [Overview](features/techdocs/README.md)
- - [Getting Started](features/techdocs/getting-started.md)
- - [Concepts](features/techdocs/concepts.md)
- - [Creating and Publishing Documentation](features/techdocs/creating-and-publishing.md)
- - [FAQ](features/techdocs/FAQ.md)
- - Plugins
- - [Overview](plugins/index.md)
- - [Existing plugins](plugins/existing-plugins.md)
- - [Creating a new plugin](plugins/create-a-plugin.md)
- - [Developing a plugin](plugins/plugin-development.md)
- - [Structure of a plugin](plugins/structure-of-a-plugin.md)
- - Backends and APIs
- - [Proxying](plugins/proxying.md)
- - [Backstage backend plugin](plugins/backend-plugin.md)
- - [Call existing API](plugins/call-existing-api.md)
- - Testing
- - [Overview](plugins/testing.md)
- - Publishing
- - [Open source and NPM](plugins/publishing.md)
- - [Private/internal (non-open source)](plugins/publish-private.md)
- - Configuration
- - [Overview](conf/index.md)
- - [Reading Configuration](conf/reading.md)
- - [Writing Configuration](conf/writing.md)
- - [Defining Configuration](conf/defining.md)
- - Authentication and identity
- - [Overview](auth/index.md)
- - [Add auth provider](auth/add-auth-provider.md)
- - [Auth backend](auth/auth-backend.md)
- - [OAuth](auth/oauth.md)
- - [Glossary](auth/glossary.md)
- - Designing for Backstage
- - [Backstage Design Language System (DLS)](dls/design.md)
- - [Storybook -- reusable UI components](http://storybook.backstage.io)
- - [Contributing to Storybook](dls/contributing-to-storybook.md)
- - [Figma resources](dls/figma.md)
- - API references
- - TypeScript API
- - [Utility APIs](api/utility-apis.md)
- - [Utility API References](reference/utility-apis/README.md)
- - [createPlugin](reference/createPlugin.md)
- - [createPlugin-feature-flags](reference/createPlugin-feature-flags.md)
- - [createPlugin-router](reference/createPlugin-router.md)
- - Backend APIs
- - [Backend](api/backend.md)
- - Tutorials
- - [Overview](tutorials/index.md)
- - Architecture Decision Records (ADRs)
- - [Overview](architecture-decisions/index.md)
- - [ADR001 - Architecture Decision Record (ADR) log](architecture-decisions/adr001-add-adr-log.md)
- - [ADR002 - Default Software Catalog File Format](architecture-decisions/adr002-default-catalog-file-format.md)
- - [ADR003 - Avoid Default Exports and Prefer Named Exports](architecture-decisions/adr003-avoid-default-exports.md)
- - [ADR004 - Module Export Structure](architecture-decisions/adr004-module-export-structure.md)
- - [ADR005 - Catalog Core Entities](architecture-decisions/adr005-catalog-core-entities.md)
- - [ADR006 - Avoid React.FC and React.SFC](architecture-decisions/adr006-avoid-react-fc.md)
- - [ADR007 - Use MSW for Mocking Network Requests](architecture-decisions/adr007-use-msw-to-mock-service-requests.md)
- - [ADR008 - Default Catalog File Name](architecture-decisions/adr008-default-catalog-file-name.md)
- - [Contribute](../CONTRIBUTING.md)
- - [Support](overview/support.md)
- - [FAQ](FAQ.md)
+- Getting started
+ - [Running Backstage locally](getting-started/index.md)
+ - [Installation](getting-started/installation.md)
+ - [Local development](getting-started/development-environment.md)
+ - [Demo deployment](https://backstage-demo.roadie.io)
+ - Production deployments
+ - [Create an App](getting-started/create-an-app.md)
+ - App configuration
+ - [Configuring App with plugins](getting-started/configure-app-with-plugins.md)
+ - [Customize the look-and-feel of your App](getting-started/app-custom-theme.md)
+ - Deployment scenarios
+ - [Kubernetes](getting-started/deployment-k8s.md)
+ - [Other](getting-started/deployment-other.md)
+- Features
+ - Software Catalog
+ - [Overview](features/software-catalog/index.md)
+ - [System model](features/software-catalog/system-model.md)
+ - [YAML File Format](features/software-catalog/descriptor-format.md)
+ - [Extending the model](features/software-catalog/extending-the-model.md)
+ - [External integrations](features/software-catalog/external-integrations.md)
+ - [API](features/software-catalog/api.md)
+ - Software creation templates
+ - [Overview](features/software-templates/index.md)
+ - [Adding templates](features/software-templates/adding-templates.md)
+ - Extending the Scaffolder:
+ - [Overview](features/software-templates/extending/index.md)
+ - [Create your own Templater](features/software-templates/extending/create-your-own-templater.md)
+ - [Create your own Publisher](features/software-templates/extending/create-your-own-publisher.md)
+ - [Create your own Preparer](features/software-templates/extending/create-your-own-preparer.md)
+ - Docs-like-code
+ - [Overview](features/techdocs/README.md)
+ - [Getting Started](features/techdocs/getting-started.md)
+ - [Concepts](features/techdocs/concepts.md)
+ - [Creating and Publishing Documentation](features/techdocs/creating-and-publishing.md)
+ - [FAQ](features/techdocs/FAQ.md)
+- Plugins
+ - [Overview](plugins/index.md)
+ - [Existing plugins](plugins/existing-plugins.md)
+ - [Creating a new plugin](plugins/create-a-plugin.md)
+ - [Developing a plugin](plugins/plugin-development.md)
+ - [Structure of a plugin](plugins/structure-of-a-plugin.md)
+ - Backends and APIs
+ - [Proxying](plugins/proxying.md)
+ - [Backstage backend plugin](plugins/backend-plugin.md)
+ - [Call existing API](plugins/call-existing-api.md)
+ - Testing
+ - [Overview](plugins/testing.md)
+ - Publishing
+ - [Open source and NPM](plugins/publishing.md)
+ - [Private/internal (non-open source)](plugins/publish-private.md)
+- Configuration
+ - [Overview](conf/index.md)
+ - [Reading Configuration](conf/reading.md)
+ - [Writing Configuration](conf/writing.md)
+ - [Defining Configuration](conf/defining.md)
+- Authentication and identity
+ - [Overview](auth/index.md)
+ - [Add auth provider](auth/add-auth-provider.md)
+ - [Auth backend](auth/auth-backend.md)
+ - [OAuth](auth/oauth.md)
+ - [Glossary](auth/glossary.md)
+- Designing for Backstage
+ - [Backstage Design Language System (DLS)](dls/design.md)
+ - [Storybook -- reusable UI components](http://backstage.io/storybook)
+ - [Contributing to Storybook](dls/contributing-to-storybook.md)
+ - [Figma resources](dls/figma.md)
+- API references
+ - TypeScript API
+ - [Utility APIs](api/utility-apis.md)
+ - [Utility API References](reference/utility-apis/README.md)
+ - [createPlugin](reference/createPlugin.md)
+ - [createPlugin-feature-flags](reference/createPlugin-feature-flags.md)
+ - [createPlugin-router](reference/createPlugin-router.md)
+ - Backend APIs
+ - [Backend](api/backend.md)
+- Tutorials
+ - [Overview](tutorials/index.md)
+- Architecture Decision Records (ADRs)
+ - [Overview](architecture-decisions/index.md)
+ - [ADR001 - Architecture Decision Record (ADR) log](architecture-decisions/adr001-add-adr-log.md)
+ - [ADR002 - Default Software Catalog File Format](architecture-decisions/adr002-default-catalog-file-format.md)
+ - [ADR003 - Avoid Default Exports and Prefer Named Exports](architecture-decisions/adr003-avoid-default-exports.md)
+ - [ADR004 - Module Export Structure](architecture-decisions/adr004-module-export-structure.md)
+ - [ADR005 - Catalog Core Entities](architecture-decisions/adr005-catalog-core-entities.md)
+ - [ADR006 - Avoid React.FC and React.SFC](architecture-decisions/adr006-avoid-react-fc.md)
+ - [ADR007 - Use MSW for Mocking Network Requests](architecture-decisions/adr007-use-msw-to-mock-service-requests.md)
+ - [ADR008 - Default Catalog File Name](architecture-decisions/adr008-default-catalog-file-name.md)
+- [Contribute](../CONTRIBUTING.md)
+- [Support](overview/support.md)
+- [FAQ](FAQ.md)
diff --git a/docs/api/backend.md b/docs/api/backend.md
index e69de29bb2..bc44b8350c 100644
--- a/docs/api/backend.md
+++ b/docs/api/backend.md
@@ -0,0 +1,6 @@
+---
+id: backend
+title: Backend
+---
+
+## TODO
diff --git a/docs/api/utility-apis.md b/docs/api/utility-apis.md
index f87db15e7e..ff8c91e178 100644
--- a/docs/api/utility-apis.md
+++ b/docs/api/utility-apis.md
@@ -1,4 +1,7 @@
-# Utility APIs
+---
+id: utility-apis
+title: Utility APIs
+---
## Introduction
@@ -153,7 +156,7 @@ The figure below shows the relationship between
fooApiRef.
-
+
The current method for connecting Utility API providers and consumers is via the
diff --git a/docs/architecture-decisions/adr001-add-adr-log.md b/docs/architecture-decisions/adr001-add-adr-log.md
index e6ab39aea4..8a484fa264 100644
--- a/docs/architecture-decisions/adr001-add-adr-log.md
+++ b/docs/architecture-decisions/adr001-add-adr-log.md
@@ -1,4 +1,8 @@
-# ADR001: Architecture Decision Record (ADR) log
+---
+id: adrs-adr001
+title: ADR001: Architecture Decision Record (ADR) log
+sidebar_label: ADR001
+---
| Created | Status |
| ---------- | ------ |
diff --git a/docs/architecture-decisions/adr002-default-catalog-file-format.md b/docs/architecture-decisions/adr002-default-catalog-file-format.md
index 00c8b0947d..c1cb719bf5 100644
--- a/docs/architecture-decisions/adr002-default-catalog-file-format.md
+++ b/docs/architecture-decisions/adr002-default-catalog-file-format.md
@@ -1,4 +1,8 @@
-# ADR002: Default Software Catalog File Format
+---
+id: adrs-adr002
+title: ADR002: Default Software Catalog File Format
+sidebar_label: ADR002
+---
| Created | Status |
| ---------- | ------ |
diff --git a/docs/architecture-decisions/adr003-avoid-default-exports.md b/docs/architecture-decisions/adr003-avoid-default-exports.md
index 7becebaa4b..7a8df28f49 100644
--- a/docs/architecture-decisions/adr003-avoid-default-exports.md
+++ b/docs/architecture-decisions/adr003-avoid-default-exports.md
@@ -1,4 +1,8 @@
-# ADR003: Avoid Default Exports and Prefer Named Exports
+---
+id: adrs-adr003
+title: ADR003: Avoid Default Exports and Prefer Named Exports
+sidebar_label: ADR003
+---
| Created | Status |
| ---------- | ------ |
diff --git a/docs/architecture-decisions/adr004-module-export-structure.md b/docs/architecture-decisions/adr004-module-export-structure.md
index 54132773c9..077f8c35d1 100644
--- a/docs/architecture-decisions/adr004-module-export-structure.md
+++ b/docs/architecture-decisions/adr004-module-export-structure.md
@@ -1,4 +1,8 @@
-# ADR004: Module Export Structure
+---
+id: adrs-adr004
+title: ADR004: Module Export Structure
+sidebar_label: ADR004
+---
| Created | Status |
| ---------- | ------ |
diff --git a/docs/architecture-decisions/adr005-catalog-core-entities.md b/docs/architecture-decisions/adr005-catalog-core-entities.md
index d607dc62fb..8f39acd1cf 100644
--- a/docs/architecture-decisions/adr005-catalog-core-entities.md
+++ b/docs/architecture-decisions/adr005-catalog-core-entities.md
@@ -1,4 +1,8 @@
-# ADR005: Catalog Core Entities
+---
+id: adrs-adr005
+title: ADR005: Catalog Core Entities
+sidebar_label: ADR005
+---
| Created | Status |
| ---------- | ------ |
@@ -18,7 +22,7 @@ Backstage should eventually support the following core entities:
- **Resources** are physical or virtual infrastructure needed to operate a
component
-
+
For now, we'll start by only implementing support for the Component entity in
the Backstage catalog. This can later be extended to APIs, Resources and other
diff --git a/docs/architecture-decisions/adr006-avoid-react-fc.md b/docs/architecture-decisions/adr006-avoid-react-fc.md
index 21e6d5b637..e48fceb562 100644
--- a/docs/architecture-decisions/adr006-avoid-react-fc.md
+++ b/docs/architecture-decisions/adr006-avoid-react-fc.md
@@ -1,4 +1,8 @@
-# ADR006: Avoid React.FC and React.SFC
+---
+id: adrs-adr006
+title: ADR006: Avoid React.FC and React.SFC
+sidebar_label: ADR006
+---
## Context
diff --git a/docs/architecture-decisions/adr007-use-msw-to-mock-service-requests.md b/docs/architecture-decisions/adr007-use-msw-to-mock-service-requests.md
index bdb221cea3..773f08be30 100644
--- a/docs/architecture-decisions/adr007-use-msw-to-mock-service-requests.md
+++ b/docs/architecture-decisions/adr007-use-msw-to-mock-service-requests.md
@@ -1,4 +1,8 @@
-# ADR007: Use MSW to mock http requests
+---
+id: adrs-adr007
+title: ADR007: Use MSW to mock http requests
+sidebar_label: ADR007
+---
## Context
diff --git a/docs/architecture-decisions/adr008-default-catalog-file-name.md b/docs/architecture-decisions/adr008-default-catalog-file-name.md
index 23910f634f..979ea4de33 100644
--- a/docs/architecture-decisions/adr008-default-catalog-file-name.md
+++ b/docs/architecture-decisions/adr008-default-catalog-file-name.md
@@ -1,4 +1,8 @@
-# ADR008: Default Catalog File Name
+---
+id: adrs-adr008
+title: ADR008: Default Catalog File Name
+sidebar_label: ADR008
+---
## Background
diff --git a/docs/architecture-decisions/index.md b/docs/architecture-decisions/index.md
index 7762a9c827..b02e8deabb 100644
--- a/docs/architecture-decisions/index.md
+++ b/docs/architecture-decisions/index.md
@@ -1,4 +1,10 @@
-# Architecture Decision Records (ADR)
+---
+id: adrs-overview
+title: Architecture Decision Records (ADR)
+sidebar_label: Overview
+---
+
+#
The substantial architecture decisions made in the Backstage project lives here.
For more information about ADRs, when to write them, and why, please see
diff --git a/docs/architecture-decisions/catalog-core-entities.png b/docs/assets/architecture-decisions/catalog-core-entities.png
similarity index 100%
rename from docs/architecture-decisions/catalog-core-entities.png
rename to docs/assets/architecture-decisions/catalog-core-entities.png
diff --git a/docs/overview/architecture-overview/backstage-typical-architecture.png b/docs/assets/architecture-overview/backstage-typical-architecture.png
similarity index 100%
rename from docs/overview/architecture-overview/backstage-typical-architecture.png
rename to docs/assets/architecture-overview/backstage-typical-architecture.png
diff --git a/docs/overview/architecture-overview/circle-ci-plugin-architecture.png b/docs/assets/architecture-overview/circle-ci-plugin-architecture.png
similarity index 100%
rename from docs/overview/architecture-overview/circle-ci-plugin-architecture.png
rename to docs/assets/architecture-overview/circle-ci-plugin-architecture.png
diff --git a/docs/overview/architecture-overview/circle-ci.png b/docs/assets/architecture-overview/circle-ci.png
similarity index 100%
rename from docs/overview/architecture-overview/circle-ci.png
rename to docs/assets/architecture-overview/circle-ci.png
diff --git a/docs/overview/architecture-overview/containerised.png b/docs/assets/architecture-overview/containerised.png
similarity index 100%
rename from docs/overview/architecture-overview/containerised.png
rename to docs/assets/architecture-overview/containerised.png
diff --git a/docs/overview/architecture-overview/core-vs-plugin-components-highlighted.png b/docs/assets/architecture-overview/core-vs-plugin-components-highlighted.png
similarity index 100%
rename from docs/overview/architecture-overview/core-vs-plugin-components-highlighted.png
rename to docs/assets/architecture-overview/core-vs-plugin-components-highlighted.png
diff --git a/docs/overview/architecture-overview/lighthouse-plugin-architecture.png b/docs/assets/architecture-overview/lighthouse-plugin-architecture.png
similarity index 100%
rename from docs/overview/architecture-overview/lighthouse-plugin-architecture.png
rename to docs/assets/architecture-overview/lighthouse-plugin-architecture.png
diff --git a/docs/overview/architecture-overview/lighthouse-plugin.png b/docs/assets/architecture-overview/lighthouse-plugin.png
similarity index 100%
rename from docs/overview/architecture-overview/lighthouse-plugin.png
rename to docs/assets/architecture-overview/lighthouse-plugin.png
diff --git a/docs/overview/architecture-overview/tech-radar-plugin-architecture.png b/docs/assets/architecture-overview/tech-radar-plugin-architecture.png
similarity index 100%
rename from docs/overview/architecture-overview/tech-radar-plugin-architecture.png
rename to docs/assets/architecture-overview/tech-radar-plugin-architecture.png
diff --git a/docs/overview/architecture-overview/tech-radar-plugin.png b/docs/assets/architecture-overview/tech-radar-plugin.png
similarity index 100%
rename from docs/overview/architecture-overview/tech-radar-plugin.png
rename to docs/assets/architecture-overview/tech-radar-plugin.png
diff --git a/docs/contributorheader.png b/docs/assets/contributorheader.png
similarity index 100%
rename from docs/contributorheader.png
rename to docs/assets/contributorheader.png
diff --git a/docs/dls/DLS.png b/docs/assets/dls/DLS.png
similarity index 100%
rename from docs/dls/DLS.png
rename to docs/assets/dls/DLS.png
diff --git a/docs/dls/designheader.png b/docs/assets/dls/designheader.png
similarity index 100%
rename from docs/dls/designheader.png
rename to docs/assets/dls/designheader.png
diff --git a/docs/dls/running-storybook.png b/docs/assets/dls/running-storybook.png
similarity index 100%
rename from docs/dls/running-storybook.png
rename to docs/assets/dls/running-storybook.png
diff --git a/docs/dls/storybook-page.png b/docs/assets/dls/storybook-page.png
similarity index 100%
rename from docs/dls/storybook-page.png
rename to docs/assets/dls/storybook-page.png
diff --git a/docs/headline.png b/docs/assets/headline.png
similarity index 100%
rename from docs/headline.png
rename to docs/assets/headline.png
diff --git a/docs/plugins/my-plugin_screenshot.png b/docs/assets/my-plugin_screenshot.png
similarity index 100%
rename from docs/plugins/my-plugin_screenshot.png
rename to docs/assets/my-plugin_screenshot.png
diff --git a/docs/features/software-catalog/service-catalog-home.png b/docs/assets/software-catalog/service-catalog-home.png
similarity index 100%
rename from docs/features/software-catalog/service-catalog-home.png
rename to docs/assets/software-catalog/service-catalog-home.png
diff --git a/docs/features/software-templates/assets/added-to-the-catalog-list.png b/docs/assets/software-templates/added-to-the-catalog-list.png
similarity index 100%
rename from docs/features/software-templates/assets/added-to-the-catalog-list.png
rename to docs/assets/software-templates/added-to-the-catalog-list.png
diff --git a/docs/features/software-templates/assets/complete.png b/docs/assets/software-templates/complete.png
similarity index 100%
rename from docs/features/software-templates/assets/complete.png
rename to docs/assets/software-templates/complete.png
diff --git a/docs/features/software-templates/assets/create.png b/docs/assets/software-templates/create.png
similarity index 100%
rename from docs/features/software-templates/assets/create.png
rename to docs/assets/software-templates/create.png
diff --git a/docs/features/software-templates/assets/failed.png b/docs/assets/software-templates/failed.png
similarity index 100%
rename from docs/features/software-templates/assets/failed.png
rename to docs/assets/software-templates/failed.png
diff --git a/docs/features/software-templates/assets/go-to-catalog.png b/docs/assets/software-templates/go-to-catalog.png
similarity index 100%
rename from docs/features/software-templates/assets/go-to-catalog.png
rename to docs/assets/software-templates/go-to-catalog.png
diff --git a/docs/features/software-templates/assets/running.png b/docs/assets/software-templates/running.png
similarity index 100%
rename from docs/features/software-templates/assets/running.png
rename to docs/assets/software-templates/running.png
diff --git a/docs/features/software-templates/assets/template-picked-2.png b/docs/assets/software-templates/template-picked-2.png
similarity index 100%
rename from docs/features/software-templates/assets/template-picked-2.png
rename to docs/assets/software-templates/template-picked-2.png
diff --git a/docs/features/software-templates/assets/template-picked.png b/docs/assets/software-templates/template-picked.png
similarity index 100%
rename from docs/features/software-templates/assets/template-picked.png
rename to docs/assets/software-templates/template-picked.png
diff --git a/docs/api/utility-apis-fig1.svg b/docs/assets/utility-apis-fig1.svg
similarity index 100%
rename from docs/api/utility-apis-fig1.svg
rename to docs/assets/utility-apis-fig1.svg
diff --git a/docs/auth/add-auth-provider.md b/docs/auth/add-auth-provider.md
index 33f1d335a0..a2830dcf4f 100644
--- a/docs/auth/add-auth-provider.md
+++ b/docs/auth/add-auth-provider.md
@@ -1,4 +1,7 @@
-# Adding authentication providers
+---
+id: add-auth-provider
+title: Adding authentication providers
+---
## Passport
diff --git a/docs/auth/auth-backend-classes.md b/docs/auth/auth-backend-classes.md
new file mode 100644
index 0000000000..1a476fa2f0
--- /dev/null
+++ b/docs/auth/auth-backend-classes.md
@@ -0,0 +1,122 @@
+# Authentication backend class layout and description.
+
+## How does authentication work ?
+
+The Backstage application can use various authentication `providers` for
+authentication. A provider has to implement an `AuthProviderRouterHandlers`
+interface for handling authentication. This interface consists of 4 methods.
+Each of this method is hosted at an endpoint `/auth/[provider]/method`, where
+`method` performs a certain operation as follows:
+
+```
+ /auth/[provider]/start -> start
+ /auth/[provider]/handler/frame -> frameHandler
+ /auth/[provider]/refresh -> refresh
+ /auth/[provider]/logout -> logout
+```
+
+For more information on how these methods are used and for which purpose, refer
+to the documentation [here](oauth.md)
+
+For details on the parameters, input and output conditions for each method,
+refer to the type documentation under
+`backstage/plugins/auth-backend/src/providers/types.ts`
+
+There are currently 2 different classes for 2 authentication mechanisms that
+implement this interface: `OAuthProvider` for `OAuth` based Mechanism and a
+`SAMLAuthProvider` for a `SAML` based mechanism
+
+### `OAuth` mechanisms
+
+Currently `OAuth` is assumed to be the defacto authentication mechanism for
+backstage based applications.
+
+Backstage comes with `batteries-included` set of OAuth Providers for some
+commonly used Providers : `Okta`, `Github`, `Google` , `Gitlab` and a generic
+`oauth2` provider.
+
+All of these use the `authorization` flow of OAuth2 to implement authentication.
+
+If your `authentication` provider is any of the above mentioned (except
+`oauth2`) providers, you can configure them by setting the right variables in
+`app-config.yaml` under then `auth` section.
+
+### Configuration
+
+Each authentication (except SAML )provider needs 5 parameters: an `oauth`
+client_id, client_secret, an authorization endpoint and a token endpoint, and an
+app origin. The `appOrigin` value is the URL at which the frontend of the
+application is hosted. This is required because, the application opens a popup
+window to perform the authentication and once the flow is completed, the popup
+window sends a `postMessage` to the frontend application to indicate the result
+of the operation. Also this URL is used to verify that authentication requests
+are coming from only this endpoint.
+
+These values are configured via the `app-config.yaml` present in the root of
+your app folder
+
+```
+auth:
+ providers:
+ google:
+ development:
+ appOrigin: "http://localhost:3000/"
+ secure: false
+ clientId:
+ $secret:
+ env: AUTH_GOOGLE_CLIENT_ID
+ clientSecret:
+ $secret:
+ env: AUTH_GOOGLE_CLIENT_SECRET
+ github:
+ development:
+ appOrigin: "http://localhost:3000/"
+ secure: false
+ clientId:
+ $secret:
+ env: AUTH_GITHUB_CLIENT_ID
+ clientSecret:
+ $secret:
+ env: AUTH_GITHUB_CLIENT_SECRET
+ enterpriseInstanceUrl:
+ $secret:
+ env: AUTH_GITHUB_ENTERPRISE_INSTANCE_URL
+ gitlab:
+ development:
+ appOrigin: "http://localhost:3000/"
+ secure: false
+ clientId:
+ $secret:
+```
+
+## Technical notes
+
+### EnvironmentHandler
+
+The concept of an `env` is core to the way the `auth-backend` works. `Spotify`
+uses an `env` query parameter to identify the environment in which the
+application is running (`dev`, `staging`, `prod`, etc). Each runtime can support
+multiple environments at the same time and the right handler for each request is
+identified and dispatched to based on the `env` parameter. All
+`AuthProviderRouterHandlers` are wrapped within a `EnvironmentHandler`.
+
+An `EnvironmentHandler` takes an `id` for each provider that it wraps, the
+handlers for each of the `env` the provider is supported in, and a `function`
+that given a `Request` as argument, can extract the information about the `env`
+under which it should be processed.
+
+Each provider exposes a factory function `createXProvider` (where X = name of
+the Provider) that takes the globalconfig, env and other parameters and returns
+a `AuthProviderRouteHandler` for each env, AND, a `envIdentifier` fn to identify
+the `env` in a request.
+
+For a list of currently available providers, look in the `factories` module
+located in `backstage/plugins/auth-backend/src/providers/factories.ts`
+
+### `oauth2` provider
+
+The `oauth2` provider abstracts a generic **OAuth2+OIDC** based authentication
+provider. What this means is that after the application has been given
+permission by the user, the`authorization code` will be exchanged for an
+`access_token` , a `refresh_token` and an `id_token`. This `id_token` is used to
+obtain an email id of the user, which is then used for creating the session.
diff --git a/docs/auth/auth-backend.md b/docs/auth/auth-backend.md
index e69de29bb2..579d2e2cda 100644
--- a/docs/auth/auth-backend.md
+++ b/docs/auth/auth-backend.md
@@ -0,0 +1,6 @@
+---
+id: auth-backend
+title: Auth backend
+---
+
+## TODO
diff --git a/docs/auth/glossary.md b/docs/auth/glossary.md
index 6408587273..607326b3a5 100644
--- a/docs/auth/glossary.md
+++ b/docs/auth/glossary.md
@@ -1,4 +1,7 @@
-# Glossary
+---
+id: glossary
+title: Glossary
+---
- **Popup** - A separate browser window opened on top of the previous one.
- **OAuth** - More specifically OAuth 2.0, a standard protocol for
diff --git a/docs/auth/index.md b/docs/auth/index.md
index 6f9af17cba..b885db0820 100644
--- a/docs/auth/index.md
+++ b/docs/auth/index.md
@@ -1,4 +1,7 @@
-# User Authentication and Authorization in Backstage
+---
+id: index
+title: User Authentication and Authorization in Backstage
+---
## Summary
diff --git a/docs/auth/oauth.md b/docs/auth/oauth.md
index d348dd2f93..6e6dc4da80 100644
--- a/docs/auth/oauth.md
+++ b/docs/auth/oauth.md
@@ -1,4 +1,7 @@
-# OAuth and OpenID Connect
+---
+id: oauth
+title: OAuth and OpenID Connect
+---
This section describes how Backstage allows plugins to request OAuth Access
Tokens and OpenID Connect ID Tokens on behalf of the user, to be used for auth
diff --git a/docs/conf/defining.md b/docs/conf/defining.md
index 0b15108f43..b28d6b8362 100644
--- a/docs/conf/defining.md
+++ b/docs/conf/defining.md
@@ -1,4 +1,7 @@
-# Defining Configuration for your Plugin
+---
+id: defining
+title: Defining Configuration for your Plugin
+---
There is currently no tooling support or helpers for defining plugin
configuration. But it's on the roadmap.
diff --git a/docs/conf/index.md b/docs/conf/index.md
index af1635d627..bc1d7e8e1f 100644
--- a/docs/conf/index.md
+++ b/docs/conf/index.md
@@ -1,4 +1,7 @@
-# Static Configuration in Backstage
+---
+id: index
+title: Static Configuration in Backstage
+---
## Summary
diff --git a/docs/conf/reading.md b/docs/conf/reading.md
index 9979f0360e..76d1f7f6ea 100644
--- a/docs/conf/reading.md
+++ b/docs/conf/reading.md
@@ -1,4 +1,7 @@
-# Reading Backstage Configuration
+---
+id: reading
+title: Reading Backstage Configuration
+---
## Config API
@@ -98,7 +101,7 @@ A good pattern for reading optional configuration values is to use the `??`
operator. For example:
```ts
-const title = config.getString('my-plugin.title') ?? 'My Plugin';
+const title = config.getOptionalString('my-plugin.title') ?? 'My Plugin';
```
To read required configuration, simply use the methods without `Optional`, for
diff --git a/docs/conf/writing.md b/docs/conf/writing.md
index 8ab397846d..da2a10a86d 100644
--- a/docs/conf/writing.md
+++ b/docs/conf/writing.md
@@ -1,4 +1,7 @@
-# Writing Backstage Configuration Files
+---
+id: writing
+title: Writing Backstage Configuration Files
+---
## File Format
diff --git a/docs/dls/contributing-to-storybook.md b/docs/dls/contributing-to-storybook.md
index 7dbe72f6d3..f0c2201a98 100644
--- a/docs/dls/contributing-to-storybook.md
+++ b/docs/dls/contributing-to-storybook.md
@@ -1,4 +1,10 @@
-# Contributing to Storybook
+---
+id: contributing-to-storybook
+title: Contributing to Storybook
+---
+
+You find our storybook at
+[http://backstage.io/storybook](http://backstage.io/storybook)
## Creating a new Story
@@ -26,7 +32,7 @@ core
Go to `packages/storybook`, run `yarn install` and install the dependencies,
then run the following on your command line: `yarn start`
-
+
_You should see a log like the image above._
@@ -34,4 +40,4 @@ If everything worked out, your server will be running on **port 6006**, go to
your browser and navigate to `http://localhost:6006/`. You should be able to
navigate and see the Storybook page.
-
+
diff --git a/docs/dls/design.md b/docs/dls/design.md
index d773a07a8f..c8a94fad4d 100644
--- a/docs/dls/design.md
+++ b/docs/dls/design.md
@@ -1,4 +1,9 @@
-
+---
+id: design
+title: Design
+---
+
+
Much like Backstage Open Source, this is a _living_ document! We'll keep this
updated as we evolve our practices!
@@ -60,7 +65,7 @@ that is shaped by user experience and user interface decisions made by our
Backstage Design Team. Also note, we encourage you to take the core experience
weโve crafted and add custom theming to better represent your organization!
-
+
## โ Our Priorities
@@ -106,16 +111,17 @@ picked up by our team as something to be added to our design system.
## โ๏ธ Resources
-**[Storybook](http://storybook.backstage.io/)** - where you can view our
+**[Storybook](http://backstage.io/storybook)** - where you can view our
components. If youโd like to help build up our design system, you can also add
components weโve designed to the Storybook as well.
-**[Figma](https://www.figma.com/@backstage)** - we're stoked to be using Figma Community to share our design assets. You can duplicate our component library and design your own plugin for Backstage.
+**[Figma](https://www.figma.com/@backstage)** - we're stoked to be using Figma
+Community to share our design assets. You can duplicate our component library
+and design your own plugin for Backstage.
**[Discord](https://discord.gg/EBHEGzX)** - all design questions should be
directed to the _#design_ channel.
-
## ๐ฎ Future
### Contributions from designers
diff --git a/docs/dls/figma.md b/docs/dls/figma.md
index 8fe6ea8d0f..14de2f5980 100644
--- a/docs/dls/figma.md
+++ b/docs/dls/figma.md
@@ -1 +1,7 @@
-We have a [Figma component library](https://www.figma.com/@backstage) that you can use to build your own plugins for Backstage.
+---
+id: figma
+title: Figma
+---
+
+We have a [Figma component library](https://www.figma.com/@backstage) that you
+can use to build your own plugins for Backstage.
diff --git a/docs/features/software-catalog/api.md b/docs/features/software-catalog/api.md
index e69de29bb2..332c1e505b 100644
--- a/docs/features/software-catalog/api.md
+++ b/docs/features/software-catalog/api.md
@@ -0,0 +1,6 @@
+---
+id: software-catalog-api
+title: API
+---
+
+## TODO
diff --git a/docs/features/software-catalog/bsc-edit.png b/docs/features/software-catalog/bsc-edit.png
new file mode 100644
index 0000000000..d1ac1f52e5
Binary files /dev/null and b/docs/features/software-catalog/bsc-edit.png differ
diff --git a/docs/features/software-catalog/bsc-extend.png b/docs/features/software-catalog/bsc-extend.png
new file mode 100644
index 0000000000..54d660ea70
Binary files /dev/null and b/docs/features/software-catalog/bsc-extend.png differ
diff --git a/docs/features/software-catalog/bsc-register-1.png b/docs/features/software-catalog/bsc-register-1.png
new file mode 100644
index 0000000000..117b2ea8ea
Binary files /dev/null and b/docs/features/software-catalog/bsc-register-1.png differ
diff --git a/docs/features/software-catalog/bsc-register-2.png b/docs/features/software-catalog/bsc-register-2.png
new file mode 100644
index 0000000000..fd1ea7b998
Binary files /dev/null and b/docs/features/software-catalog/bsc-register-2.png differ
diff --git a/docs/features/software-catalog/bsc-search.png b/docs/features/software-catalog/bsc-search.png
new file mode 100644
index 0000000000..8e417cb076
Binary files /dev/null and b/docs/features/software-catalog/bsc-search.png differ
diff --git a/docs/features/software-catalog/bsc-starred.png b/docs/features/software-catalog/bsc-starred.png
new file mode 100644
index 0000000000..27db19c842
Binary files /dev/null and b/docs/features/software-catalog/bsc-starred.png differ
diff --git a/docs/features/software-catalog/descriptor-format.md b/docs/features/software-catalog/descriptor-format.md
index 68cee2352c..4751bd88f7 100644
--- a/docs/features/software-catalog/descriptor-format.md
+++ b/docs/features/software-catalog/descriptor-format.md
@@ -1,4 +1,8 @@
-# Descriptor Format of Catalog Entities
+---
+id: descriptor-format
+title: Descriptor Format of Catalog Entities
+sidebar_label: YAML File Format
+---
This section describes the default data shape and semantics of catalog entities.
@@ -14,6 +18,8 @@ humans. However, the structure and semantics is the same in both cases.
- [Common to All Kinds: The Envelope](#common-to-all-kinds-the-envelope)
- [Common to All Kinds: The Metadata](#common-to-all-kinds-the-metadata)
- [Kind: Component](#kind-component)
+- [Kind: Template](#kind-template)
+- [Kind: API](#kind-api)
## Overall Shape Of An Entity
@@ -80,7 +86,7 @@ The root envelope object has the following structure.
### `apiVersion` and `kind` [required]
The `kind` is the high level entity type being described.
-[ADR005](/docs/architecture-decisions/adr005-catalog-core-entities.md) describes
+[ADR005](../../architecture-decisions/adr005-catalog-core-entities.md) describes
a number of core kinds that plugins can know of and understand, but an
organization using Backstage is free to also add entities of other kinds to the
catalog.
@@ -252,6 +258,8 @@ spec:
type: website
lifecycle: production
owner: artist-relations@example.com
+ implementsApis:
+ - artist-api
```
In addition to the [common envelope metadata](#common-to-all-kinds-the-metadata)
@@ -312,14 +320,22 @@ Apart from being a string, the software catalog leaves the format of this field
open to implementers to choose. Most commonly, it is set to the ID or email of a
group of people in an organizational structure.
+### `spec.implementsApis` [optional]
+
+Links APIs that are implemented by the component, e.g. `artist-api`. This field
+is optional.
+
+The software catalog expects a list of one or more strings that references the
+names of other entities of the `kind` `API`.
+
## Kind: Template
Describes the following entity kind:
-| Field | Value |
-| -------------------- | ----------------------- |
-| `apiVersion` | `backstage.io/v1alpha1` |
-| `Kind: Templatekind` | `Template` |
+| Field | Value |
+| ------------ | ----------------------- |
+| `apiVersion` | `backstage.io/v1alpha1` |
+| `kind` | `Template` |
A Template describes a skeleton for use with the Scaffolder. It is used for
describing what templating library is supported, and also for documenting the
@@ -422,3 +438,76 @@ specify relative to the `template.yaml` definition.
This is also particularly useful when you have multiple template definitions in
the same repository but only a single `template.yaml` registered in backstage.
+
+## Kind: API
+
+Describes the following entity kind:
+
+| Field | Value |
+| ------------ | ----------------------- |
+| `apiVersion` | `backstage.io/v1alpha1` |
+| `kind` | `API` |
+
+An API describes an interface that can be exposed by a component. The API can be
+defined in different formats, like [OpenAPI](https://swagger.io/specification/),
+[AsyncAPI](https://www.asyncapi.com/docs/specifications/latest/),
+[gRPC](https://developers.google.com/protocol-buffers), or other formats.
+
+Descriptor files for this kind may look as follows.
+
+```yaml
+apiVersion: backstage.io/v1alpha1
+kind: API
+metadata:
+ name: artist-api
+ description: Retrieve artist details
+spec:
+ type: openapi
+ definition: |
+ openapi: "3.0.0"
+ info:
+ version: 1.0.0
+ title: Artist API
+ license:
+ name: MIT
+ servers:
+ - url: http://artist.spotify.net/v1
+ paths:
+ /artists:
+ get:
+ summary: List all artists
+ ...
+```
+
+In addition to the [common envelope metadata](#common-to-all-kinds-the-metadata)
+shape, this kind has the following structure.
+
+### `apiVersion` and `kind` [required]
+
+Exactly equal to `backstage.io/v1alpha1` and `API`, respectively.
+
+### `spec.type` [required]
+
+The type of the API definition as a string, e.g. `openapi`. This field is
+required.
+
+The software catalog accepts any type value, but an organisation should take
+great care to establish a proper taxonomy for these. Tools including Backstage
+itself may read this field and behave differently depending on its value. For
+example, an OpenAPI type API may be displayed using an OpenAPI viewer tooling in
+the Backstage interface.
+
+The current set of well-known and common values for this field is:
+
+- `openapi` - An API definition in YAML or JSON format based on the
+ [OpenAPI](https://swagger.io/specification/) version 2 or version 3 spec.
+- `asyncapi` - An API definition based on the
+ [AsyncAPI](https://www.asyncapi.com/docs/specifications/latest/) spec.
+- `grpc` - An API definition based on
+ [Protocol Buffers](https://developers.google.com/protocol-buffers) to use with
+ [gRPC](https://grpc.io/).
+
+### `spec.definition` [required]
+
+The definition of the API, based on the format defined by `spec.type`. This
+field is required.
diff --git a/docs/features/software-catalog/extending-the-model.md b/docs/features/software-catalog/extending-the-model.md
index e69de29bb2..ce5ea03b26 100644
--- a/docs/features/software-catalog/extending-the-model.md
+++ b/docs/features/software-catalog/extending-the-model.md
@@ -0,0 +1,41 @@
+---
+id: extending-the-model
+title: Extending the model
+---
+
+Backstage natively supports tracking of the following component
+[`type`](descriptor-format.md)'s:
+
+- Services
+- Websites
+- Libraries
+- Documentation
+- Other
+
+
+
+Since these types are likely not the only kind of software you will want to
+track in Backstage, it is possible to
+
+It is possible to add your own software types that fits your organization's data
+model. Inside Spotify our model has grown significantly over the years, and now
+includes ML models, Apps, data pipelines and many more.
+
+## Adding a new type
+
+TODO: Describe what changes are needed to add a new type that shows up in the
+catalog.
+
+## The Other type
+
+It might be tempting to put software that doesn't fit into any of the existing
+types into Other. There are a few reasons why we advice against this; firstly,
+we have found that it is preferred to match the conceptual model that your
+engineers have when describing your sofware. Secondly, Backstage helps your
+engineers manage their software by integrating the infratrucure tooling through
+plugins. Different plugins are used for managing different types of components.
+
+For example, the
+[Lighthouse plugin](https://github.com/spotify/backstage/tree/master/plugins/lighthouse)
+only makes sense for Websites. The more specific you can be in how you model
+your software, the easier it is to provide plugins that are contextual.
diff --git a/docs/features/software-catalog/external-integrations.md b/docs/features/software-catalog/external-integrations.md
index e69de29bb2..7ca869cdae 100644
--- a/docs/features/software-catalog/external-integrations.md
+++ b/docs/features/software-catalog/external-integrations.md
@@ -0,0 +1,11 @@
+---
+id: external-integrations
+title: External integrations
+---
+
+Backstage natively supports storing software components in
+[metadata YAML files](descriptor-format.md). However, companies that already
+have an existing system for keeping track of software and its owners can
+integrate such systems with Backstage.
+
+TODO: Describe the API contract.
diff --git a/docs/features/software-catalog/index.md b/docs/features/software-catalog/index.md
index d4d9bf1e2d..fe107d1f59 100644
--- a/docs/features/software-catalog/index.md
+++ b/docs/features/software-catalog/index.md
@@ -1,4 +1,7 @@
-# Backstage Service Catalog (alpha)
+---
+id: software-catalog-overview
+title: Backstage Service Catalog (alpha)
+---
## What is a Service Catalog?
@@ -6,24 +9,115 @@ The Backstage Service Catalog โ actually, a software catalog, since it include
more than just services โ is a centralized system that keeps track of ownership
and metadata for all the software in your ecosystem (services, websites,
libraries, data pipelines, etc). The catalog is built around the concept of
-[metadata yaml files](../../architecture-decisions/adr002-default-catalog-file-format.md#format)
-stored together with the code, which are then harvested and visualized in
-Backstage.
+[metadata YAML files](descriptor-format.md) stored together with the code, which
+are then harvested and visualized in Backstage.

-We have also found that the service catalog is a great way to organise the
-infrastructure tools you use to manage the software as well. This is how
-Backstage creates one developer portal for all your tools. Rather than asking
-teams to jump between different infrastructure UIโs (and incurring additional
-cognitive overhead each time they make a context switch), most of these tools
-can be organised around the entities in the catalog.
+## How it works
-## Using the Service Catalog
+Backstage and the Backstage Service Catalog makes it easy for one team to manage
+10 services โ and makes it possible for your company to manage thousands of
+them.
-TODO
+More specifically, the Service Catalog enables two main use-cases:
-
+1. Helping teams manage and maintain the software they own. Teams get a uniform
+ view of all their software; services, libraries, websites, ML models โ you
+ name it, Backstage knows all about it.
+2. Makes all the software in your company, and who owns it, discoverable. No
+ more orphan software hiding in the dark corners of your software ecosystem.
+
+## Getting Started
+
+The Software Catalog is available to browse on the start page at `/`. If you've
+followed [Installing in your Backstage App](./installation.md) in your separate
+App or [Getting Started with Backstage](../../getting-started) for this repo,
+you should be able to browse the catalog at `http://localhost:3000`.
+
+
+
+## Adding components to the catalog
+
+The source of truth for the components in your service catalog are
+[metadata YAML files](descriptor-format.md) stored in source control (GitHub,
+GitHub Enterprise, GitLab, ...).
+
+There are 3 ways to add components to the catalog:
+
+1. Manually register components
+2. Creating new components through Backstage
+3. Integrating with and [external source](external-integrations.md)
+
+### Manually register components
+
+Users can register new components by going to `/create` and clicking the
+**REGISTER EXISTING COMPONENT** button:
+
+
+
+Backstage expects the full URL to the YAML in your source control. Example:
+
+```
+https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/artist-lookup-component.yaml
+```
+
+_More examples can be found
+[here](https://github.com/spotify/backstage/tree/master/packages/catalog-model/examples)._
+
+
+
+It is important to note that any kind of software can be registered in
+Backstage. Even if the software is not maintained by your company (SaaS
+offering, for example) it is still useful to create components for tracking
+ownership.
+
+### Creating new components through Backstage
+
+All software created through the
+[Backstage Software Templates](../software-templates/index.md) are automatically
+registered in the catalog.
+
+### Updating component metadata
+
+Teams owning the components are responsible for maintaining the metadata about
+them, and do so using their normal Git workflow.
+
+
+
+Once the change has been merged, Backstage will automatically show the updated
+metadata in the service catalog after a short while.
+
+## Finding software in the catalog
+
+By default the service catalog shows components owned by the team of the logged
+in user. But you can also switch to _All_ to see all the components across your
+companie's software ecosystem. Basic inline _search_ and _column filtering_
+makes it easy to browse a big set of components.
+
+
+
+## Starring components
+
+For easy and quick access to components you visit frequently, Backstage supports
+_starring_ of components:
+
+
+
+## Integrated tooling through plugins
+
+The service catalog is a great way to organise the infrastructure tools you use
+to manage the software. This is how Backstage creates one developer portal for
+all your tools. Rather than asking teams to jump between different
+infrastructure UIโs (and incurring additional cognitive overhead each time they
+make a context switch), most of these tools can be organised around the entities
+in the catalog.
+
+
+
+The Backstage platform can be customized by incorporating
+[existing open source plugins](https://github.com/spotify/backstage/tree/master/plugins),
+or by [building your own](../../plugins/index.md).
## Links
diff --git a/docs/features/software-catalog/installation.md b/docs/features/software-catalog/installation.md
new file mode 100644
index 0000000000..397abcc6b0
--- /dev/null
+++ b/docs/features/software-catalog/installation.md
@@ -0,0 +1,193 @@
+# Installing in your Backstage App
+
+The catalog plugin comes in two packages, `@backstage/plugin-catalog` and
+`@backstage/plugin-catalog-backend`. Each has their own installation steps,
+outlined below.
+
+## Installing @backstage/plugin-catalog
+
+> **Note that if you used `npx @backstage/create-app`, the plugin may already be
+> present**
+
+The catalog frontend plugin should be installed in your `app` package, which is
+created as a part of `@backstage/create-app`. To install the package, run:
+
+```bash
+cd packages/app
+yarn add @backstage/plugin-catalog
+```
+
+Make sure the version of `@backstage/plugin-catalog` matches the version of
+other `@backstage` packages. You can update it in `packages/app/package.json` if
+it doesn't.
+
+### Adding the Plugin to your `packages/app`
+
+Add the following entry to the head of your `packages/app/src/plugins.ts`:
+
+```ts
+export { plugin as CatalogPlugin } from '@backstage/plugin-catalog';
+```
+
+Add the following to your `packages/app/src/apis.ts`:
+
+```ts
+import { catalogApiRef, CatalogClient } from '@backstage/plugin-catalog';
+
+// Inside the ApiRegistry builder function ...
+
+builder.add(
+ catalogApiRef,
+ new CatalogClient({
+ apiOrigin: backendUrl,
+ basePath: '/catalog',
+ }),
+);
+```
+
+Where `backendUrl` is the `backend.baseUrl` from config, i.e.
+`const backendUrl = config.getString('backend.baseUrl')`.
+
+The catalog components depend on a number of other
+[Utility APIs](../../api/utility-apis.md) to function, including at least the
+`ErrorApi` and `StorageApi`. You can find an example of how to install these in
+your app
+[here](https://github.com/spotify/backstage/blob/61c3a7e5b750dc7c059ef16b188594d31b2c04c2/packages/app/src/apis.ts#L80).
+
+## Gotchas that we will fix
+
+Since the catalog plugin currently ships with a sentry plugin `InfoCard`
+installed by default, you'll need to set `sentry.organization` in your
+`app-yaml.yaml`. For example:
+
+```yaml
+sentry:
+ organization: Acme Corporation
+```
+
+If you've created an app with an older version of `@backstage/create-app` or
+`@backstage/cli create-app`, be sure to remove the Welcome plugin from the app,
+as that will conflict with the catalog routes.
+
+## Installing @backstage/plugin-catalog-backend
+
+> **Note that if you used `npx @backstage/create-app`, the plugin may already be
+> present**
+
+The catalog backend should be installed in your `backend` package, which is
+created as a part of `@backstage/create-app`. To install the package, run:
+
+```bash
+cd packages/backend
+yarn add @backstage/plugin-catalog-backend
+```
+
+Make sure the version of `@backstage/plugin-catalog-backend` matches the version
+of other `@backstage` packages. You can update it in
+`packages/backend/package.json` if it doesn't.
+
+### Adding the Plugin to your `packages/backend`
+
+You'll need to add the plugin to the `backend`'s router. You can do this by
+creating a file called `packages/backend/src/plugins/catalog.ts` with the
+following contents to get you up and running quickly.
+
+```ts
+import {
+ createRouter,
+ DatabaseEntitiesCatalog,
+ DatabaseLocationsCatalog,
+ DatabaseManager,
+ HigherOrderOperations,
+ LocationReaders,
+ runPeriodically,
+} from '@backstage/plugin-catalog-backend';
+import { PluginEnvironment } from '../types';
+import { useHotCleanup } from '@backstage/backend-common';
+
+export default async function createPlugin({
+ logger,
+ database,
+}: PluginEnvironment) {
+ const locationReader = new LocationReaders(logger);
+
+ const db = await DatabaseManager.createDatabase(database, { logger });
+ const entitiesCatalog = new DatabaseEntitiesCatalog(db);
+ const locationsCatalog = new DatabaseLocationsCatalog(db);
+ const higherOrderOperation = new HigherOrderOperations(
+ entitiesCatalog,
+ locationsCatalog,
+ locationReader,
+ logger,
+ );
+
+ useHotCleanup(
+ module,
+ runPeriodically(() => higherOrderOperation.refreshAllLocations(), 10000),
+ );
+
+ return await createRouter({
+ entitiesCatalog,
+ locationsCatalog,
+ higherOrderOperation,
+ logger,
+ });
+}
+```
+
+Once the `catalog.ts` router setup file is in place, add the router to
+`packages/backend/src/index.ts`:
+
+```ts
+import catalog from './plugins/catalog';
+
+const catalogEnv = useHotMemoize(module, () => createEnv('catalog'));
+
+const service = createServiceBuilder(module)
+ .loadConfig(configReader)
+ /** several different routers */
+ .addRouter('/catalog', await catalog(catalogEnv));
+```
+
+### Adding Entries to the Catalog
+
+At this point the catalog backend is installed in your backend package, but you
+will not have any entities loaded.
+
+To get up and running and try out some templates quickly, you can add some of
+our example templates through static configuration. Add the following to the
+`catalog.locations` section in your `app-config.yaml`:
+
+```yaml
+catalog:
+ locations:
+ # Backstage Example Component
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/artist-lookup-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/playback-order-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/podcast-api-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/queue-proxy-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/searcher-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/playback-lib-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/www-artist-component.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/packages/catalog-model/examples/shuffle-api-component.yaml
+```
+
+### Running the Backend
+
+Finally, start up the backend with the new configuration:
+
+```bash
+cd packages/backend
+yarn start
+```
+
+If you've also set up the frontend plugin, so you should be ready to go browse
+the catalog at [localhost:3000](http://localhost:3000) now!
diff --git a/docs/features/software-catalog/populating.md b/docs/features/software-catalog/populating.md
deleted file mode 100644
index e69de29bb2..0000000000
diff --git a/docs/features/software-catalog/system-model.md b/docs/features/software-catalog/system-model.md
index e69de29bb2..4b2884e097 100644
--- a/docs/features/software-catalog/system-model.md
+++ b/docs/features/software-catalog/system-model.md
@@ -0,0 +1,99 @@
+---
+id: system-model
+title: System Model
+---
+
+We believe that a strong shared understanding and terminology around systems,
+software and resources leads to a better Backstage experience.
+
+_This description originates from
+[this RFC](https://github.com/spotify/backstage/issues/390). Note that some of
+the concepts are not yet supported in Backstage._
+
+## Concepts
+
+We model our technology using these five concepts (further explained below):
+
+- **Domains** are a high-level grouping of systems
+- **Systems** encapsulate the implementation of APIs
+- **APIs** are the boundaries between different components and systems
+- **Components** are pieces of software
+- **Resources** are physical or virtual infrastructure needed to operate a
+ system
+
+
+
+### Domain
+
+While systems are the basic level of encapsulation for resources, components and
+APIs, it is often useful to group a collection of systems that share
+terminology, domain models, business purpose, or documentation, i.e. they form a
+bounded context.
+
+For example, it would make sense if the different systems in the โPaymentsโ
+domain would come with some documentation on how to accept payments for a new
+product or use-case, share the same entity types in their APIs, and integrate
+well with each other.
+
+### System
+
+With increasing complexity in software, we believe that systems form an
+important abstraction level to help us reason about software ecosystems. Systems
+are a useful concept in that they allow us to ignore the implementation details
+of a certain functionality for consumers, while allowing the owning team to make
+changes as they see fit (leading to low coupling).
+
+A system, in this sense, is a collection of resources and components that
+exposes one or several APIs. Components and resources in a system are typically
+owned by the same team and are expected to co-evolve. As such, systems usually
+consist of at most a handful of components.
+
+For example, a playlist management system might encapsulate a backend service to
+update playlists, a backend service to query them, and a database to store them.
+It could expose an RPC API, a daily snapshots dataset, and an event stream of
+playlist updates.
+
+### Component
+
+A component is a piece of software, for example a mobile feature, web site,
+backend service or data pipeline (list not exhaustive). A component can be
+tracked in source control, or use some existing open source or commercial
+software.
+
+A component can implement APIs for other components to consume. It might depend
+on the resources of the system it belongs to, and APIs from other components or
+other systems. All other aspects of the component, e.g. any code dependencies,
+must be encapsulated.
+
+### API
+
+We believe APIs form an important (maybe the most important) abstraction that
+allows large software ecosystems to scale. Thus, APIs are a first class citizen
+in the Backstage model and the primary way to discover existing functionality in
+the ecosystem.
+
+APIs are implemented by components and form boundaries between components and
+systems. They might be defined using an RPC IDL (eg Protobuf, GraphQL, ...), a
+data schema (eg Avro, TFRecord, ...), or as code interfaces. In any case, APIs
+exposed by components need to be in a known machine-readable format so we can
+build further tooling and analysis on top.
+
+Some APIs might be exposed by the system, making them available for any other
+Spotify component to consume. Those public APIs must be documented and humanly
+discoverable in Backstage.
+
+### Resource
+
+Resources are the infrastructure a system needs to operate, like BigTable
+databases, Pub/Sub topics, S3 buckets or CDNs. Modelling them together with
+components and systems will better allow us to visualize resource footprint, and
+create tooling around them.
+
+## Current status
+
+Backstage currently supports Components and APIs.
+
+## Links
+
+- [Original RFC](https://github.com/spotify/backstage/issues/390)
+- [YAML file format](../../architecture-decisions/adr002-default-catalog-file-format.md)
diff --git a/docs/features/software-templates/adding-templates.md b/docs/features/software-templates/adding-templates.md
index bf540d656a..2ec4bdd6f3 100644
--- a/docs/features/software-templates/adding-templates.md
+++ b/docs/features/software-templates/adding-templates.md
@@ -1,4 +1,7 @@
-# Adding your own Templates
+---
+id: adding-templates
+title: Adding your own Templates
+---
Templates are stored in the **Service Catalog** under a kind `Template`. The
minimum that the a template skeleton needs is a `template.yaml` but it would be
@@ -15,7 +18,8 @@ metadata:
# title of the template
title: React SSR Template
# a description of the template
- description: Next.js application skeleton for creating isomorphic web applications.
+ description:
+ Next.js application skeleton for creating isomorphic web applications.
# some tags to display in the frontend
tags:
- Recommended
@@ -39,7 +43,7 @@ spec:
type: string
description: Unique name of the component
description:
- title: Description
+ title: Description
type: string
description: Description of the component
```
diff --git a/docs/features/software-templates/extending/create-your-own-preparer.md b/docs/features/software-templates/extending/create-your-own-preparer.md
index 4e45bef535..739c516658 100644
--- a/docs/features/software-templates/extending/create-your-own-preparer.md
+++ b/docs/features/software-templates/extending/create-your-own-preparer.md
@@ -1,4 +1,7 @@
-# Create your own Preparer
+---
+id: extending-preparer
+title: Create your own Preparer
+---
Preparers are responsible for reading the location of the definition of a
[Template Entity](../../software-catalog/descriptor-format.md#kind-template) and
diff --git a/docs/features/software-templates/extending/create-your-own-publisher.md b/docs/features/software-templates/extending/create-your-own-publisher.md
index 8baf604e01..51869dc3ad 100644
--- a/docs/features/software-templates/extending/create-your-own-publisher.md
+++ b/docs/features/software-templates/extending/create-your-own-publisher.md
@@ -1,4 +1,7 @@
-# Create your own Publisher
+---
+id: extending-publisher
+title: Create your own Publisher
+---
Publishers are responsible for pushing and storing the templated skeleton after
the values have been templated by the `Templater`. See
diff --git a/docs/features/software-templates/extending/create-your-own-templater.md b/docs/features/software-templates/extending/create-your-own-templater.md
index 947190c5e5..ac05eed3b0 100644
--- a/docs/features/software-templates/extending/create-your-own-templater.md
+++ b/docs/features/software-templates/extending/create-your-own-templater.md
@@ -1,4 +1,7 @@
-# Creating your own Templater
+---
+id: extending-templater
+title: Creating your own Templater
+---
Templaters are responsible for taking the directory path for the skeleton
returned by the preparers, and then executing the templating command on top of
diff --git a/docs/features/software-templates/extending/index.md b/docs/features/software-templates/extending/index.md
index a55128c57d..21d8befda1 100644
--- a/docs/features/software-templates/extending/index.md
+++ b/docs/features/software-templates/extending/index.md
@@ -1,4 +1,7 @@
-## Extending the Scaffolder
+---
+id: extending-index
+title: Extending the Scaffolder
+---
Welcome. Take a seat. You're at the Scaffolder Documentation.
diff --git a/docs/features/software-templates/index.md b/docs/features/software-templates/index.md
index c7358518cd..d9a86ee7aa 100644
--- a/docs/features/software-templates/index.md
+++ b/docs/features/software-templates/index.md
@@ -1,19 +1,27 @@
-# Software Templates
+---
+id: software-templates-index
+title: Software Templates
+---
The Software Templates part of Backstage is a tool that can help you create
Components inside Backstage. It by default has the ability to load skeletons of
code, template in some variables and then publish the template to some location
like GitHub.
+
+
### Getting Started
-The Software Templates are available under `/create`, and if you've followed
-[Getting Started with Backstage](../../getting-started), you should be able to
-reach `http://localhost:3000/create`.
+The Software Templates are available under `/create`. If you've followed
+[Installing in your Backstage App](./installation.md) in your separate App or
+[Getting Started with Backstage](../../getting-started) for this repo, you
+should be able to reach `http://localhost:3000/create`.
You should get something that looks similar to this:
-
+
### Choose a template
@@ -22,38 +30,38 @@ page which may or may not look different for each template. Each template can
ask for different input variables, and they are then passed to the templater
internally.
-
+
After filling in these variables, you'll get some more fields to fill out which
are required for backstage usage. The owner, which is a `user` in the backstage
system, and the `storePath` which right now must be a Github Organisation and a
-non-existing github repository name in the format `organistaion/reponame`.
+non-existing github repository name in the format `organisation/reponame`.
-
+
### Run!
Once you've entered values and confirmed, you'll then get a modal with live
progress of what is currently happening with the creation of your template.
-
+
It shouldn't take too long, and you'll have a success screen!
-
+
If it fails, you'll be able to click on each section to get the log from the
step that failed which can be helpful to debug.
-
+
### View Component in Catalog
When it's been created you'll see the `View in Catalog` button, which will take
you to the registered component in the catalog:
-
+
And then you'll also be able to see it in the Catalog View table
-
+
diff --git a/docs/features/software-templates/installation.md b/docs/features/software-templates/installation.md
new file mode 100644
index 0000000000..0508d1f3f7
--- /dev/null
+++ b/docs/features/software-templates/installation.md
@@ -0,0 +1,194 @@
+# Installing in your Backstage App
+
+The scaffolder plugin comes in two packages, `@backstage/plugin-scaffolder` and
+`@backstage/plugin-scaffolder-backend`. Each has their own installation steps,
+outlined below.
+
+The Scaffolder plugin also depends on the Software Catalog. Instructions for how
+to set that up can be found [here](../software-catalog/installation.md).
+
+## Installing @backstage/plugin-scaffolder
+
+> **Note that if you used `npx @backstage/create-app`, the plugin may already be
+> present**
+
+The scaffolder frontend plugin should be installed in your `app` package, which
+is created as a part of `@backstage/create-app`. To install the package, run:
+
+```bash
+cd packages/app
+yarn add @backstage/plugin-scaffolder
+```
+
+Make sure the version of `@backstage/plugin-scaffolder` matches the version of
+other `@backstage` packages. You can update it in `packages/app/package.json` if
+it doesn't.
+
+### Adding the Plugin to your `packages/app`
+
+Add the following entry to the head of your `packages/app/src/plugins.ts`:
+
+```ts
+export { plugin as ScaffolderPlugin } from '@backstage/plugin-scaffolder';
+```
+
+Add the following to your `packages/app/src/apis.ts`:
+
+```ts
+import { scaffolderApiRef, ScaffolderApi } from '@backstage/plugin-scaffolder';
+
+// Inside the ApiRegistry builder function ...
+
+builder.add(
+ scaffolderApiRef,
+ new ScaffolderApi({
+ apiOrigin: backendUrl,
+ basePath: '/scaffolder/v1',
+ }),
+);
+```
+
+Where `backendUrl` is the `backend.baseUrl` from config, i.e.
+`const backendUrl = config.getString('backend.baseUrl')`.
+
+This is all that is needed for the frontend part of the Scaffolder plugin to
+work!
+
+## Installing @backstage/plugin-scaffolder-backend
+
+> **Note that if you used `npx @backstage/create-app`, the plugin may already be
+> present**
+
+The scaffolder backend should be installed in your `backend` package, which is
+created as a part of `@backstage/create-app`. To install the package, run:
+
+```bash
+cd packages/backend
+yarn add @backstage/plugin-scaffolder-backend
+```
+
+Make sure the version of `@backstage/plugin-scaffolder-backend` matches the
+version of other `@backstage` packages. You can update it in
+`packages/backend/package.json` if it doesn't.
+
+### Adding the Plugin to your `packages/backend`
+
+You'll need to add the plugin to the `backend`'s router. You can do this by
+creating a file called `packages/backend/src/plugins/scaffolder.ts` with the
+following contents to get you up and running quickly.
+
+```ts
+import {
+ CookieCutter,
+ createRouter,
+ FilePreparer,
+ GithubPreparer,
+ Preparers,
+ GithubPublisher,
+ CreateReactAppTemplater,
+ Templaters,
+} from '@backstage/plugin-scaffolder-backend';
+import { Octokit } from '@octokit/rest';
+import type { PluginEnvironment } from '../types';
+import Docker from 'dockerode';
+
+export default async function createPlugin({ logger }: PluginEnvironment) {
+ const cookiecutterTemplater = new CookieCutter();
+ const craTemplater = new CreateReactAppTemplater();
+ const templaters = new Templaters();
+
+ // Register default templaters
+ templaters.register('cookiecutter', cookiecutterTemplater);
+ templaters.register('cra', craTemplater);
+
+ const filePreparer = new FilePreparer();
+ const githubPreparer = new GithubPreparer();
+ const preparers = new Preparers();
+
+ // Register default preparers
+ preparers.register('file', filePreparer);
+ preparers.register('github', githubPreparer);
+
+ // Create Github client with your access token from environment variables
+ const githubClient = new Octokit({ auth: process.env.GITHUB_ACCESS_TOKEN });
+ const publisher = new GithubPublisher({ client: githubClient });
+
+ const dockerClient = new Docker();
+ return await createRouter({
+ preparers,
+ templaters,
+ publisher,
+ logger,
+ dockerClient,
+ });
+}
+```
+
+Once the `scaffolder.ts` router setup file is in place, add the router to
+`packages/backend/src/index.ts`:
+
+```ts
+import scaffolder from './plugins/scaffolder';
+
+const scaffolderEnv = useHotMemoize(module, () => createEnv('scaffolder'));
+
+const service = createServiceBuilder(module)
+ .loadConfig(configReader)
+ /** several different routers */
+ .addRouter('/scaffolder', await scaffolder(scaffolderEnv));
+```
+
+### Adding Templates
+
+At this point the scaffolder backend is installed in your backend package, but
+you will not have any templates available to use. These need to be added to the
+software catalog, as they are represented as entities of kind
+[Template](../software-catalog/descriptor-format.md#kind-template). You can find
+out more about adding templates [here](./adding-templates.md).
+
+To get up and running and try out some templates quickly, you can add some of
+our example templates through static configuration. Add the following to the
+`catalog.locations` section in your `app-config.yaml`:
+
+```yaml
+catalog:
+ locations:
+ # Backstage Example Templates
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/plugins/scaffolder-backend/sample-templates/react-ssr-template/template.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/plugins/scaffolder-backend/sample-templates/springboot-grpc-template/template.yaml
+ - type: github
+ target: https://github.com/spotify/backstage/blob/master/plugins/scaffolder-backend/sample-templates/create-react-app/template.yaml
+ - type: github
+ target: https://github.com/spotify/cookiecutter-golang/blob/master/template.yaml
+```
+
+### Runtime Dependencies
+
+For the scaffolder backend plugin to function, it needs a GitHub access token,
+and access to a running Docker daemon. You can create a GitHub access token
+[here](https://github.com/settings/tokens/new), select `repo` scope only. Full
+docs on creating private GitHub access tokens is available
+[here](https://docs.github.com/en/github/authenticating-to-github/creating-a-personal-access-token).
+Note that the need for private GitHub access tokens will be replaced with GitHub
+Apps integration further down the line.
+
+> **Right now it is only possible to scaffold repositories inside GitHub
+> organizations, and not under personal accounts.**
+
+The GitHub access token is passed along using the `GITHUB_ACCESS_TOKEN`
+environment variable.
+
+### Running the Backend
+
+Finally, make sure you have a local Docker daemon running, and start up the
+backend with the new configuration:
+
+```bash
+cd packages/backend
+GITHUB_ACCESS_TOKEN= yarn start
+```
+
+If you've also set up the frontend plugin, so you should be ready to go browse
+the templates at [localhost:3000/create](http://localhost:3000/create) now!
diff --git a/docs/features/techdocs/FAQ.md b/docs/features/techdocs/FAQ.md
index f872e63718..1a52a35cfb 100644
--- a/docs/features/techdocs/FAQ.md
+++ b/docs/features/techdocs/FAQ.md
@@ -1,8 +1,13 @@
-# TechDocs FAQ
+---
+id: faqs
+title: TechDocs FAQ
+sidebar_label: FAQ
+---
This page answers frequently asked questions about [TechDocs](README.md).
-_Got a question that you think others might be interested in knowing the answer to? Edit this file
+_Got a question that you think others might be interested in knowing the answer
+to? Edit this file
[here](https://github.com/spotify/backstage/edit/master/docs/features/techdocs/FAQ.md)._
## Technology
@@ -25,4 +30,3 @@ package is a MkDocs Plugin that works like a wrapper around multiple MkDocs
plugins (e.g.
[MkDocs Monorepo Plugin](https://github.com/spotify/mkdocs-monorepo-plugin)) as
well as a selection of Python Markdown extensions that TechDocs supports.
-
diff --git a/docs/features/techdocs/README.md b/docs/features/techdocs/README.md
index 8d0fb01ec3..c0e6ccfda9 100644
--- a/docs/features/techdocs/README.md
+++ b/docs/features/techdocs/README.md
@@ -1,4 +1,8 @@
-# TechDocs Documentation
+---
+id: techdocs-overview
+title: TechDocs Documentation
+sidebar_label: Overview
+---
## What is it?
@@ -16,9 +20,9 @@ Spotifyโs developer experience offering with 2,400+ documentation sites and
- A clear end-to-end docs-like-code solution. (_Coming soon in V.1_)
- A tightly coupled feedback loop with the developer workflow. (_Coming soon in
- V.2_)
+ V.3_)
-- A developer ecosystem for creating extensions. (_Coming soon in V.2_)
+- A developer ecosystem for creating extensions. (_Coming soon in V.3_)
## Project roadmap
diff --git a/docs/features/techdocs/concepts.md b/docs/features/techdocs/concepts.md
index f06ed8b4c0..fd87543994 100644
--- a/docs/features/techdocs/concepts.md
+++ b/docs/features/techdocs/concepts.md
@@ -1,6 +1,10 @@
-# Concepts
+---
+id: concepts
+title: Concepts
+---
-This page describes concepts that are introduced with Spotify's docs-like-code solution in Backstage.
+This page describes concepts that are introduced with Spotify's docs-like-code
+solution in Backstage.
### TechDocs Core Plugin
@@ -8,7 +12,7 @@ The TechDocs Core Plugin is a MkDocs plugin created as a wrapper around multiple
MkDocs plugins and Python Markdown extensions to standardize the configuration
of MkDocs used for TechDocs.
-[TechDocs Core](../../../packages/techdocs-container/techdocs-core/README.md)
+[TechDocs Core](https://github.com/spotify/backstage/blob/master/packages/techdocs-container/techdocs-core/README.md)
### TechDocs container
@@ -17,7 +21,7 @@ The TechDocs container is a Docker container available at
pages, including stylesheets and scripts from Python flavored Markdown, through
MkDocs.
-[TechDocs Container](../../../packages/techdocs-container/README.md)
+[TechDocs Container](https://github.com/spotify/backstage/blob/master/packages/techdocs-container/README.md)
### TechDocs publisher (coming soon)
@@ -28,7 +32,7 @@ documentation for publishing. Currently it mostly acts as a wrapper around the
TechDocs container and provides an easy-to-use interface for our docker
container.
-[TechDocs CLI](../../../packages/techdocs-cli/README.md)
+[TechDocs CLI](https://github.com/spotify/backstage/blob/master/packages/techdocs-cli/README.md)
### TechDocs Reader
@@ -40,7 +44,7 @@ The TechDocs Reader purpose is also to open up the opportunity to integrate
TechDocs widgets for a customized full-featured TechDocs experience.
([coming soon V.2](https://github.com/spotify/backstage/milestone/17))
-[TechDocs Reader](../../../plugins/techdocs/src/reader/README.md)
+[TechDocs Reader](https://github.com/spotify/backstage/blob/master/plugins/techdocs/src/reader/README.md)
### Transformers
@@ -49,4 +53,4 @@ Reader. The reason why transformers were introduced was to provide a way to
transform the HTML content on pre and post render (e.g. rewrite docs links or
modify css).
-[Transformers API docs](../../../plugins/techdocs/src/reader/transformers/README.md)
+[Transformers API docs](https://github.com/spotify/backstage/blob/master/plugins/techdocs/src/reader/transformers/README.md)
diff --git a/docs/features/techdocs/creating-and-publishing.md b/docs/features/techdocs/creating-and-publishing.md
index b38fb77b08..342b846dcc 100644
--- a/docs/features/techdocs/creating-and-publishing.md
+++ b/docs/features/techdocs/creating-and-publishing.md
@@ -1,22 +1,29 @@
-# Creating and publishing your docs
+---
+id: creating-and-publishing
+title: Creating and publishing your docs
+sidebar_label: Creating and Publishing Documentation
+---
This section will guide you through:
- Creating a basic setup for your documentation
- Writing and previewing your documentation in a local Backstage environment
- Creating a build ready for publication
-- Publishing your documentation and making your Backstage instance read your published docs.
+- Publishing your documentation and making your Backstage instance read your
+ published docs.
## Prerequisities
- [Docker](https://docs.docker.com/get-docker/)
- Static file hosting
-- A working Backstage instance with TechDocs installed
- (see [TechDocs getting started](getting-started.md))
+- A working Backstage instance with TechDocs installed (see
+ [TechDocs getting started](getting-started.md))
## Create a basic documentation setup
-In your home directory (also known as `~`), create a directory that contains your documentation (for example, `hello-docs`). Inside this directory, create a file called `mkdocs.yml`. Below is a basic example of how it could look.
+In your home directory (also known as `~`), create a directory that contains
+your documentation (for example, `hello-docs`). Inside this directory, create a
+file called `mkdocs.yml`. Below is a basic example of how it could look.
The `~/hello-docs/mkdocs.yml` file should have the following content:
@@ -65,15 +72,19 @@ You should now have a folder called `~/hello-docs/site/`.
## Deploy to a file server
-In order to serve documentation to TechDocs, our Backstage plugin needs to download the HTML rendered from the previous step. This will likely exist on an external file server, or a storage solution such as Google Cloud Storage.
+In order to serve documentation to TechDocs, our Backstage plugin needs to
+download the HTML rendered from the previous step. This will likely exist on an
+external file server, or a storage solution such as Google Cloud Storage.
-When deploying documentation, it should be deployed on that file server/storage solution with the following convention: `{id}/{file}`. For example, if
-you want to upload the `getting-started/index.html` file for the `backstage`
+When deploying documentation, it should be deployed on that file server/storage
+solution with the following convention: `{id}/{file}`. For example, if you want
+to upload the `getting-started/index.html` file for the `backstage`
documentation site, we would upload it to our file server as
`backstage/getting-started/index.html`.
To explain further what this would look like for multiple documentation sites,
-take a look at this example file tree that would be represented on your file server:
+take a look at this example file tree that would be represented on your file
+server:
```md
/backstage/index.html /backstage/getting-started/index.html
@@ -87,17 +98,19 @@ In this file tree, we have two documentation sites available: `backstage` and
on `http://example.com` as the server URL.
When you configure the TechDocs plugin in Backstage to use `http://example.com`
-as the file server/storage solution, it will translate the following URLs to
-the file server:
+as the file server/storage solution, it will translate the following URLs to the
+file server:
| Backstage URL | File Server URL |
| --------------------------------------------------------- | ------------------------------------------------------- |
| https://demo.backstage.io/docs/backstage/ | http://example.com/backstage/index.html |
| https://demo.backstage.io/docs/mkdocs/plugin-development/ | http://example.com/mkdocs/plugin-development/index.html |
-Then deploying new sites is easy: simply copy over the `site/`
-folder produced in the [Create documentation](#build-production-ready-documentation) step above to the file server/storage solution under the ID of the documentation site. It will then become immediately available in Backstage under
-the same ID as you can see in the table above.
+Then deploying new sites is easy: simply copy over the `site/` folder produced
+in the [Create documentation](#build-production-ready-documentation) step above
+to the file server/storage solution under the ID of the documentation site. It
+will then become immediately available in Backstage under the same ID as you can
+see in the table above.
So, if the URL to your file server is `http://example.com/`, your
`~/hello-docs/site` folder containing the documentation should be accessible at
diff --git a/docs/features/techdocs/getting-started.md b/docs/features/techdocs/getting-started.md
index 90dcd423fa..094f9a8378 100644
--- a/docs/features/techdocs/getting-started.md
+++ b/docs/features/techdocs/getting-started.md
@@ -1,17 +1,20 @@
-# Getting Started
+---
+id: getting-started
+title: Getting Started
+---
> TechDocs is not yet feature complete - currently you can't set up a complete
> end-to-end working TechDocs plugin without customizing the plugin itself.
-> What you can expect from TechDocs V.0 is a demonstration of how to integrate docs into
-> Backstage. TechDocs can create docs using
+> What you can expect from TechDocs V.0 is a demonstration of how to integrate
+> docs into Backstage. TechDocs can create docs using
> [mkdocs](https://www.mkdocs.org/), as well as read published docs. If you
> publish generated docs and pass in a `storageUrl` in your `app-config.yaml`,
> you can view them in Backstage by going to
> `http://localhost:3000/docs/`.
-TechDocs functions as a plugin to
-Backstage, so you will need to use Backstage to use TechDocs.
+TechDocs functions as a plugin to Backstage, so you will need to use Backstage
+to use TechDocs.
## What is Backstage?
@@ -38,17 +41,20 @@ To create a new Backstage application for TechDocs, run the following command:
npx @backstage/cli create-app
```
-You will then be prompted to enter a name for your application. Once that's done, a new Backstage application will be created in a new folder. For
-example, if you choose the name `hello-world`, a new `hello-world` folder is created containing your new Backstage application.
+You will then be prompted to enter a name for your application. Once that's
+done, a new Backstage application will be created in a new folder. For example,
+if you choose the name `hello-world`, a new `hello-world` folder is created
+containing your new Backstage application.
## Installing TechDocs
-TechDocs is not provided with the Backstage application by default, so you will now need to set up TechDocs manually. It should take less
-than a minute.
+TechDocs is not provided with the Backstage application by default, so you will
+now need to set up TechDocs manually. It should take less than a minute.
### Adding the package
-The first step is to add the TechDocs plugin to your Backstage application. Navigate to your new Backstage application folder:
+The first step is to add the TechDocs plugin to your Backstage application.
+Navigate to your new Backstage application folder:
```bash
cd hello-world/
@@ -61,7 +67,7 @@ cd packages/app
yarn add @backstage/plugin-techdocs
```
-After a short while, the TechDocs plugin should be successfully installed.
+After a short while, the TechDocs plugin should be successfully installed.
Next, you need to set up some basic configuration. Enter the following command:
@@ -78,7 +84,8 @@ export { plugin as TechDocs } from '@backstage/plugin-techdocs';
### Setting the configuration
TechDocs allows for configuration of the docs storage URL through your
-`app-config` file. The URL provided here is for demo docs to use for testing purposes.
+`app-config` file. The URL provided here is for demo docs to use for testing
+purposes.
To use the demo docs, add the following lines to `app-config.yaml`:
@@ -99,5 +106,5 @@ Open your browser at [http://localhost:3000/docs/](http://localhost:3000/docs/).
## Additional reading
- * [Creating and publishing your docs](creating-and-publishing.md)
- * [Back to README](README.md)
+- [Creating and publishing your docs](creating-and-publishing.md)
+- [Back to README](README.md)
diff --git a/docs/getting-started/app-custom-theme.md b/docs/getting-started/app-custom-theme.md
index 8c8b150171..e555c6b52d 100644
--- a/docs/getting-started/app-custom-theme.md
+++ b/docs/getting-started/app-custom-theme.md
@@ -1,4 +1,7 @@
-# Custom App Themes
+---
+id: app-custom-theme
+title: Customize the look-and-feel of your App
+---
Backstage ships with a default theme with a light and dark mode variant. The
themes are provided as a part of the
diff --git a/docs/getting-started/configure-app-with-plugins.md b/docs/getting-started/configure-app-with-plugins.md
index e69de29bb2..a0d2c27f89 100644
--- a/docs/getting-started/configure-app-with-plugins.md
+++ b/docs/getting-started/configure-app-with-plugins.md
@@ -0,0 +1,6 @@
+---
+id: configure-app-with-plugins
+title: Configuring App with plugins
+---
+
+Coming soon!
diff --git a/docs/getting-started/create-an-app.md b/docs/getting-started/create-an-app.md
index 32093ea811..fe22935002 100644
--- a/docs/getting-started/create-an-app.md
+++ b/docs/getting-started/create-an-app.md
@@ -1,4 +1,7 @@
-# Backstage App
+---
+id: create-an-app
+title: Create an App
+---
To get set up quickly with your own Backstage project you can create a Backstage
App.
diff --git a/docs/getting-started/deployment-k8s.md b/docs/getting-started/deployment-k8s.md
index e69de29bb2..2a184779e2 100644
--- a/docs/getting-started/deployment-k8s.md
+++ b/docs/getting-started/deployment-k8s.md
@@ -0,0 +1,6 @@
+---
+id: deployment-k8s
+title: Kubernetes
+---
+
+Coming soon!
diff --git a/docs/getting-started/deployment-other.md b/docs/getting-started/deployment-other.md
index 26c70acac4..3b7796f8fe 100644
--- a/docs/getting-started/deployment-other.md
+++ b/docs/getting-started/deployment-other.md
@@ -1,4 +1,7 @@
-# Deployment (Other)
+---
+id: deployment-other
+title: Other
+---
## Deploying Locally
diff --git a/docs/getting-started/development-environment.md b/docs/getting-started/development-environment.md
index e10ee4b24a..6a3a2cc7a2 100644
--- a/docs/getting-started/development-environment.md
+++ b/docs/getting-started/development-environment.md
@@ -1,4 +1,7 @@
-# Development Environment
+---
+id: development-environment
+title: Development Environment
+---
This section describes how to get set up for doing development on the Backstage
repository.
diff --git a/docs/getting-started/index.md b/docs/getting-started/index.md
index 2770b7a154..bfd3c70913 100644
--- a/docs/getting-started/index.md
+++ b/docs/getting-started/index.md
@@ -1,6 +1,7 @@
-# Getting started with Backstage
-
-## Running Backstage Locally
+---
+id: index
+title: Running Backstage Locally
+---
To get up and running with a local Backstage to evaluate it, let's clone it off
of GitHub and run an initial build. First make sure that you have at least node
diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md
index e69de29bb2..a4f91b6e95 100644
--- a/docs/getting-started/installation.md
+++ b/docs/getting-started/installation.md
@@ -0,0 +1,6 @@
+---
+id: installation
+title: Installation
+---
+
+Coming soon!
diff --git a/docs/overview/architecture-overview.md b/docs/overview/architecture-overview.md
index 9093e98e2e..9f1d6d3291 100644
--- a/docs/overview/architecture-overview.md
+++ b/docs/overview/architecture-overview.md
@@ -1,4 +1,9 @@
-# Typical Backstage architecture
+---
+id: architecture-overview
+title: Architecture overview
+---
+
+## Overview
The following diagram shows how Backstage might look when deployed inside a
company which uses the Tech Radar plugin, the Lighthouse plugin, the Circle CI
@@ -14,27 +19,27 @@ Running this architecture in a real environment typically involves
containerising the components. Various commands are provided for accomplishing
this.
-
+
-# The UI
+## The UI
The UI is a thin, client-side wrapper around a set of plugins. It provides some
core UI components and libraries for shared activities such as config
management. [[live demo](https://backstage-demo.roadie.io/)]
-
+
Each plugin typically makes itself available in the UI on a dedicated URL. For
example, the lighthouse plugin is registered with the UI on `/lighthouse`.
[[live demo](https://backstage-demo.roadie.io/lighthouse)]
-
+
The Circle CI plugin is available on `/circleci`.
-
+
-# Plugins and plugin backends
+## Plugins and plugin backends
Each plugin is a client side application which mounts itself on the UI. Plugins
are written in TypeScript or JavaScript. They each live in their own directory
@@ -42,7 +47,7 @@ in `backstage/plugins`. For example, the source code for the lighthouse plugin
is available at
[backstage/plugins/lighthouse](https://github.com/spotify/backstage/tree/master/plugins/lighthouse).
-## Installing plugins
+### Installing plugins
Plugins are typically loaded by the UI in your Backstage applications
`plugins.ts` file. For example,
@@ -74,7 +79,7 @@ export default builder.build() as ApiHolder;
As of this moment, there is no config based install procedure for plugins. Some
code changes are required.
-## Plugin architecture
+### Plugin architecture
Architecturally, plugins can take three forms:
@@ -82,21 +87,21 @@ Architecturally, plugins can take three forms:
2. Service backed
3. Third-party backed
-### Standalone plugins
+#### Standalone plugins
Standalone plugins run entirely in the browser.
[The tech radar plugin](https://backstage-demo.roadie.io/tech-radar), for
example, simply renders hard-coded information. It doesn't make any API requests
to other services.
-
+
The architecture of the Tech Radar installed into a Backstage app is very
simple.
-
+
-### Service backed plugins
+#### Service backed plugins
Service backed plugins make API requests to a service which is within the
purview of the organisation running Backstage.
@@ -109,7 +114,7 @@ results in a PostgreSQL database.
Its architecture looks like this:
-
+
The service catalog in Backstage is another example of a service backed plugin.
It retrieves a list of services, or "entities", from the Backstage Backend
@@ -131,9 +136,9 @@ Cross Origin Resource Sharing policies which prevent a browser page served at
[https://example.com](https://example.com) from serving resources hosted at
https://circleci.com.
-
+
-# Databases
+## Databases
As we have seen, both the lighthouse-audit-service and catalog-backend require a
database to work with.
@@ -150,7 +155,7 @@ GitHub issues.
[Update migrations to support postgres by dariddler ยท Pull Request #1527 ยท spotify/backstage](https://github.com/spotify/backstage/pull/1527#discussion_r450374145)
-# Containerization
+## Containerization
The example Backstage architecture shown above would Dockerize into three
separate docker images.
@@ -159,7 +164,7 @@ separate docker images.
2. The backend container
3. The lighthouse audit service container
-
+
The frontend container can be built with a provided command.
diff --git a/docs/overview/architecture-terminology.md b/docs/overview/architecture-terminology.md
index 6a9d773142..aee581f927 100644
--- a/docs/overview/architecture-terminology.md
+++ b/docs/overview/architecture-terminology.md
@@ -1,4 +1,7 @@
-# Architecture and Terminology
+---
+id: architecture-terminology
+title: Architecture terminology
+---
Backstage is constructed out of three parts. We separate Backstage in this way
because we see three groups of contributors that work with Backstage in three
diff --git a/docs/overview/roadmap.md b/docs/overview/roadmap.md
index 36ff658596..6acea71509 100644
--- a/docs/overview/roadmap.md
+++ b/docs/overview/roadmap.md
@@ -1,4 +1,7 @@
-# Project roadmap
+---
+id: roadmap
+title: Project roadmap
+---
We created Backstage about 4 years ago. While our internal version of Backstage
has had the benefit of time to mature and evolve, the first iteration of our
@@ -8,7 +11,7 @@ project and we have already begun work on various aspects of these phases:
- ๐ฃ **Phase 1:** Extensible frontend platform (Done โ ) - You will be able to
easily create a single consistent UI layer for your internal infrastructure
and tools. A set of reusable
- [UX patterns and components](http://storybook.backstage.io) help ensure a
+ [UX patterns and components](http://backstage.io/storybook) help ensure a
consistent experience between tools.
- ๐ข **Phase 2:** Service Catalog
diff --git a/docs/overview/support.md b/docs/overview/support.md
index 7c7390fb69..9e4e9eca15 100644
--- a/docs/overview/support.md
+++ b/docs/overview/support.md
@@ -1,4 +1,7 @@
-# Support and community
+---
+id: support
+title: Support and community
+---
- [Discord chatroom](https://discord.gg/MUpMjP2) - Get support or discuss the
project
diff --git a/docs/overview/what-is-backstage.md b/docs/overview/what-is-backstage.md
index 86b5417d5f..163b6c219b 100644
--- a/docs/overview/what-is-backstage.md
+++ b/docs/overview/what-is-backstage.md
@@ -1,9 +1,10 @@
-# [Backstage](https://backstage.io)
+---
+id: what-is-backstage
+title: What is Backstage?
+---

-## What is Backstage?
-
[Backstage](https://backstage.io/) is an open platform for building developer
portals. Powered by a centralized service catalog, Backstage restores order to
your microservices and infrastructure. So your product teams can ship
@@ -14,15 +15,15 @@ to create a streamlined development environment from end to end.
Out of the box, Backstage includes:
-- [Backstage Service Catalog](https://github.com/spotify/backstage/blob/master/docs/features/software-catalog/index.md)
- for managing all your software (microservices, libraries, data pipelines,
+- [Backstage Service Catalog](../features/software-catalog/index.md) for
+ managing all your software (microservices, libraries, data pipelines,
websites, ML models, etc.)
-- [Backstage Software Templates](https://github.com/spotify/backstage/blob/master/docs/features/software-templates/index.md)
- for quickly spinning up new projects and standardizing your tooling with your
+- [Backstage Software Templates](../features/software-templates/index.md) for
+ quickly spinning up new projects and standardizing your tooling with your
organizationโs best practices
-- [Backstage TechDocs](https://github.com/spotify/backstage/tree/master/docs/features/techdocs)
- for making it easy to create, maintain, find, and use technical documentation,
- using a "docs like code" approach
+- [Backstage TechDocs](../features/techdocs/README.md) for making it easy to
+ create, maintain, find, and use technical documentation, using a "docs like
+ code" approach
- Plus, a growing ecosystem of
[open source plugins](https://github.com/spotify/backstage/tree/master/plugins)
that further expand Backstageโs customizability and functionality
diff --git a/docs/plugins/backend-plugin.md b/docs/plugins/backend-plugin.md
index e69de29bb2..986af66c20 100644
--- a/docs/plugins/backend-plugin.md
+++ b/docs/plugins/backend-plugin.md
@@ -0,0 +1,6 @@
+---
+id: backend-plugin
+title: Backend plugin
+---
+
+## TODO
diff --git a/docs/plugins/call-existing-api.md b/docs/plugins/call-existing-api.md
index e69de29bb2..075d4bdeb6 100644
--- a/docs/plugins/call-existing-api.md
+++ b/docs/plugins/call-existing-api.md
@@ -0,0 +1,6 @@
+---
+id: call-existing-api
+title: Call existing API
+---
+
+## TODO
diff --git a/docs/plugins/create-a-plugin.md b/docs/plugins/create-a-plugin.md
index fa91e38b06..0ca83b076c 100644
--- a/docs/plugins/create-a-plugin.md
+++ b/docs/plugins/create-a-plugin.md
@@ -1,4 +1,7 @@
-# Create a Backstage Plugin
+---
+id: create-a-plugin
+title: Create a Backstage Plugin
+---
A Backstage Plugin adds functionality to Backstage.
diff --git a/docs/plugins/existing-plugins.md b/docs/plugins/existing-plugins.md
index bd6fd19691..8598ae02c4 100644
--- a/docs/plugins/existing-plugins.md
+++ b/docs/plugins/existing-plugins.md
@@ -1,4 +1,7 @@
-# Existing plugins
+---
+id: existing-plugins
+title: Existing plugins
+---
## Open source plugins
diff --git a/docs/plugins/index.md b/docs/plugins/index.md
index 5021ac9896..bb8951f959 100644
--- a/docs/plugins/index.md
+++ b/docs/plugins/index.md
@@ -1,4 +1,7 @@
-# Plugins
+---
+id: index
+title: Intro
+---
Backstage is a single-page application composed of a set of plugins.
@@ -8,7 +11,7 @@ development tool as a plugin in Backstage. By following strong
[design guidelines](../dls/design.md) we ensure the the overall user experience
stays consistent between plugins.
-
+
## Creating a plugin
diff --git a/docs/plugins/plugin-development.md b/docs/plugins/plugin-development.md
index 41918b5de2..b5c3240de0 100644
--- a/docs/plugins/plugin-development.md
+++ b/docs/plugins/plugin-development.md
@@ -1,4 +1,7 @@
-# Plugin Development in Backstage
+---
+id: plugin-development
+title: Plugin Development in Backstage
+---
Backstage plugins provide features to a Backstage App.
diff --git a/docs/plugins/proxying.md b/docs/plugins/proxying.md
index e69de29bb2..4cf5b4c025 100644
--- a/docs/plugins/proxying.md
+++ b/docs/plugins/proxying.md
@@ -0,0 +1,6 @@
+---
+id: proxying
+title: Proxying
+---
+
+## TODO
diff --git a/docs/plugins/publish-private.md b/docs/plugins/publish-private.md
index e69de29bb2..6361f70854 100644
--- a/docs/plugins/publish-private.md
+++ b/docs/plugins/publish-private.md
@@ -0,0 +1,6 @@
+---
+id: publish-private
+title: Publish private
+---
+
+## TODO
diff --git a/docs/plugins/publishing.md b/docs/plugins/publishing.md
index 76997c30d2..1d16ebb047 100644
--- a/docs/plugins/publishing.md
+++ b/docs/plugins/publishing.md
@@ -1,4 +1,7 @@
-# Publishing
+---
+id: publishing
+title: Publishing
+---
## NPM
diff --git a/docs/plugins/structure-of-a-plugin.md b/docs/plugins/structure-of-a-plugin.md
index ceacf578fe..20e72c539d 100644
--- a/docs/plugins/structure-of-a-plugin.md
+++ b/docs/plugins/structure-of-a-plugin.md
@@ -1,4 +1,7 @@
-# Structure of a Plugin
+---
+id: structure-of-a-plugin
+title: Structure of a Plugin
+---
Nice, you have a new plugin! We'll soon see how we can develop it into doing
great things. But first off, let's look at what we get out of the box.
diff --git a/docs/plugins/testing.md b/docs/plugins/testing.md
index 701db3eff4..110bc97515 100644
--- a/docs/plugins/testing.md
+++ b/docs/plugins/testing.md
@@ -1,4 +1,7 @@
-# Testing with Jest
+---
+id: testing
+title: Testing with Jest
+---
Backstage uses [Jest](https://facebook.github.io/jest/) for all our unit testing
needs.
diff --git a/docs/reference/createPlugin-feature-flags.md b/docs/reference/createPlugin-feature-flags.md
index 0f1debd515..bc38656939 100644
--- a/docs/reference/createPlugin-feature-flags.md
+++ b/docs/reference/createPlugin-feature-flags.md
@@ -1,4 +1,7 @@
-# createPlugin - feature flags
+---
+id: createPlugin-feature-flags
+title: createPlugin - feature flags
+---
The `featureFlags` object passed to the `register` function makes it possible
for plugins to register Feature Flags in Backstage for users to opt into. You
diff --git a/docs/reference/createPlugin-router.md b/docs/reference/createPlugin-router.md
index 831b27f388..ebefa13bb0 100644
--- a/docs/reference/createPlugin-router.md
+++ b/docs/reference/createPlugin-router.md
@@ -1,4 +1,7 @@
-# createPlugin - router
+---
+id: createPlugin-router
+title: createPlugin - router
+---
The router that is passed to the `register` function makes it possible for
plugins to hook into routing of the Backstage app and provide the end users with
diff --git a/docs/reference/createPlugin.md b/docs/reference/createPlugin.md
index 7ecb6d461a..0cabe63b39 100644
--- a/docs/reference/createPlugin.md
+++ b/docs/reference/createPlugin.md
@@ -1,4 +1,7 @@
-# createPlugin
+---
+id: createPlugin
+title: createPlugin
+---
Taking a plugin config as argument and returns a new plugin.
diff --git a/docs/reference/utility-apis/README.md b/docs/reference/utility-apis/README.md
index 8b9ebcbdad..fbfbbc475e 100644
--- a/docs/reference/utility-apis/README.md
+++ b/docs/reference/utility-apis/README.md
@@ -1,11 +1,14 @@
-# Backstage Core Utility APIs
+---
+id: README
+title: Utility API References
+---
The following is a list of all Utility APIs defined by `@backstage/core`. They
are available to use by plugins and components, and can be accessed using the
`useApi` hook, also provided by `@backstage/core`. For more information, see
https://github.com/spotify/backstage/blob/master/docs/api/utility-apis.md.
-### alert
+## alert
Used to report alerts and forward them to the app
@@ -14,7 +17,7 @@ Implemented type: [AlertApi](./AlertApi.md)
ApiRef:
[alertApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/AlertApi.ts#L41)
-### appTheme
+## appTheme
API Used to configure the app theme, and enumerate options
@@ -23,7 +26,7 @@ Implemented type: [AppThemeApi](./AppThemeApi.md)
ApiRef:
[appThemeApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/AppThemeApi.ts#L74)
-### config
+## config
Used to access runtime configuration
@@ -32,7 +35,7 @@ Implemented type: [Config](./Config.md)
ApiRef:
[configApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/ConfigApi.ts#L22)
-### error
+## error
Used to report errors and forward them to the app
@@ -41,7 +44,7 @@ Implemented type: [ErrorApi](./ErrorApi.md)
ApiRef:
[errorApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/ErrorApi.ts#L65)
-### featureFlags
+## featureFlags
Used to toggle functionality in features across Backstage
@@ -50,7 +53,7 @@ Implemented type: [FeatureFlagsApi](./FeatureFlagsApi.md)
ApiRef:
[featureFlagsApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/FeatureFlagsApi.ts#L58)
-### githubAuth
+## githubAuth
Provides authentication towards Github APIs
@@ -62,7 +65,7 @@ Implemented types: [OAuthApi](./OAuthApi.md),
ApiRef:
[githubAuthApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/auth.ts#L230)
-### gitlabAuth
+## gitlabAuth
Provides authentication towards Gitlab APIs
@@ -74,7 +77,7 @@ Implemented types: [OAuthApi](./OAuthApi.md),
ApiRef:
[gitlabAuthApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/auth.ts#L260)
-### googleAuth
+## googleAuth
Provides authentication towards Google APIs and identities
@@ -87,7 +90,7 @@ Implemented types: [OAuthApi](./OAuthApi.md),
ApiRef:
[googleAuthApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/auth.ts#L213)
-### identity
+## identity
Provides access to the identity of the signed in user
@@ -96,7 +99,7 @@ Implemented type: [IdentityApi](./IdentityApi.md)
ApiRef:
[identityApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/IdentityApi.ts#L54)
-### oauth2
+## oauth2
Example of how to use oauth2 custom provider
@@ -107,7 +110,7 @@ Implemented types: [OAuthApi](./OAuthApi.md),
ApiRef:
[oauth2ApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/auth.ts#L270)
-### oauthRequest
+## oauthRequest
An API for implementing unified OAuth flows in Backstage
@@ -116,7 +119,7 @@ Implemented type: [OAuthRequestApi](./OAuthRequestApi.md)
ApiRef:
[oauthRequestApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/OAuthRequestApi.ts#L130)
-### oktaAuth
+## oktaAuth
Provides authentication towards Okta APIs
@@ -129,7 +132,7 @@ Implemented types: [OAuthApi](./OAuthApi.md),
ApiRef:
[oktaAuthApiRef](https://github.com/spotify/backstage/blob/f8780ff32509d0326bc513791ea60846d7614b34/packages/core-api/src/apis/definitions/auth.ts#L243)
-### storage
+## storage
Provides the ability to store data which is unique to the user
diff --git a/docs/tutorials/index.md b/docs/tutorials/index.md
index e69de29bb2..b5780875b2 100644
--- a/docs/tutorials/index.md
+++ b/docs/tutorials/index.md
@@ -0,0 +1,6 @@
+---
+id: index
+title: Overview
+---
+
+## Coming soon!
diff --git a/docs/verify-links.js b/docs/verify-links.js
index 8c865309f9..a218cde71b 100755
--- a/docs/verify-links.js
+++ b/docs/verify-links.js
@@ -17,12 +17,21 @@
const { resolve: resolvePath, dirname } = require('path');
const fs = require('fs-extra');
-const fetch = require('node-fetch');
const recursive = require('recursive-readdir');
const projectRoot = resolvePath(__dirname, '..');
async function verifyUrl(basePath, url) {
+ // Avoid having absolute URL links within docs/, so that links work on the site
+ if (
+ url.match(
+ /https:\/\/github.com\/spotify\/backstage\/(tree|blob)\/master\/docs\//,
+ ) &&
+ basePath.match(/^(?:docs|microsite)\//)
+ ) {
+ return { url, basePath, problem: 'absolute' };
+ }
+
url = url.replace(/#.*$/, '');
url = url.replace(
/https:\/\/github.com\/spotify\/backstage\/(tree|blob)\/master/,
@@ -33,14 +42,25 @@ async function verifyUrl(basePath, url) {
}
// Only verify existence of local files for now, so skip anything with a schema
- if (!url.match(/[a-z]+:/)) {
- const path = url.startsWith('/')
- ? resolvePath(projectRoot, `.${url}`)
- : resolvePath(dirname(resolvePath(projectRoot, basePath)), url);
- const exists = await fs.pathExists(path);
- if (!exists) {
- return { url, basePath };
+ if (url.match(/[a-z]+:/)) {
+ return;
+ }
+
+ let path = '';
+
+ if (url.startsWith('/')) {
+ if (url.startsWith('/docs/') && basePath.match(/^(?:docs|microsite)\//)) {
+ return { url, basePath, problem: 'not-relative' };
}
+
+ path = resolvePath(projectRoot, `.${url}`);
+ } else {
+ path = resolvePath(dirname(resolvePath(projectRoot, basePath)), url);
+ }
+
+ const exists = await fs.pathExists(path);
+ if (!exists) {
+ return { url, basePath, problem: 'missing' };
}
return;
@@ -65,7 +85,12 @@ async function verifyFile(filePath) {
async function main() {
process.chdir(projectRoot);
- const files = await recursive('.', ['node_modules', 'dist', 'bin']);
+ const files = await recursive('.', [
+ 'node_modules',
+ 'dist',
+ 'bin',
+ 'microsite',
+ ]);
const mdFiles = files.filter(f => f.endsWith('.md'));
const badUrls = [];
@@ -76,8 +101,18 @@ async function main() {
if (badUrls.length) {
console.log(`Found ${badUrls.length} bad links within repo`);
- for (const { url, basePath } of badUrls) {
- console.error(`Unable to reach ${url}, linked from ${basePath}`);
+ for (const { url, basePath, problem } of badUrls) {
+ if (problem === 'missing') {
+ console.error(`Unable to reach ${url}, linked from ${basePath}`);
+ } else if (problem === 'not-relative') {
+ console.error('Links to /docs/ must be relative');
+ console.error(` From: ${basePath}`);
+ console.error(` To: ${url}`);
+ } else if (problem === 'absolute') {
+ console.error(`Link to docs/ should be replaced by a relative URL`);
+ console.error(` From: ${basePath}`);
+ console.error(` To: ${url}`);
+ }
}
process.exit(1);
}
diff --git a/microsite/blog/2020-04-30-how-to-quickly-set-up-backstage.md b/microsite/blog/2020-04-30-how-to-quickly-set-up-backstage.md
index b4fe534a67..65ee02f6a0 100644
--- a/microsite/blog/2020-04-30-how-to-quickly-set-up-backstage.md
+++ b/microsite/blog/2020-04-30-how-to-quickly-set-up-backstage.md
@@ -21,7 +21,7 @@ A Backstage app is a modern monorepo web project that is built using Backstage p
More specifically, a Backstage app includes the core packages and APIs that provide base functionality to the app. The actual UX is provided by plugins. As an example, when you first load the `/` page of the app, the content is provided by the `welcome` plugin.
-Plugins are the essential building blocks of Backstage and extend the platform by providing additional features and functionality. Read more about [Backstage plugins](https://github.com/spotify/backstage/tree/master/docs/getting-started) on GitHub.
+Plugins are the essential building blocks of Backstage and extend the platform by providing additional features and functionality. Read more about [Backstage plugins](/docs/getting-started) on GitHub.
## A personalized platform
@@ -50,7 +50,7 @@ yarn start
And you are good to go! ๐
-Read the full documentation on how to [create an app](https://github.com/spotify/backstage/blob/master/docs/create-an-app.md) on GitHub.
+Read the full documentation on how to [create an app](/docs/getting-started/create-an-app.md) on GitHub.
## What do I get? (Let's get technical...)
diff --git a/microsite/blog/2020-05-22-phase-2-service-catalog.md b/microsite/blog/2020-05-22-phase-2-service-catalog.md
index 631931bb82..682965d2dd 100644
--- a/microsite/blog/2020-05-22-phase-2-service-catalog.md
+++ b/microsite/blog/2020-05-22-phase-2-service-catalog.md
@@ -27,7 +27,7 @@ Quote from [Platform Nuts & Bolts: Extendable Data Models](https://www.kislayver
Entities, or what we refer to as โcomponentsโ in Backstage, represent all software, including services, websites, libraries, data pipelines, and so forth. The focus of Phase 2 will be on adding an entity model in Backstage that makes it easy for engineers to create and manage the software components they own.
-With the ability to create a plethora of components in Backstage, how does one keep track of all the software in the ecosystem? Therein lies the highlight feature of Phase 2: the [Service Catalog](https://github.com/spotify/backstage/milestone/4). The service catalog โ or software catalog โ is a centralized system that keeps track of ownership and metadata about all software in your ecosystem. The catalog is built around the concept of [metadata yaml files](https://github.com/spotify/backstage/blob/master/docs/architecture-decisions/adr002-default-catalog-file-format.md) stored together with the code, which are then harvested and visualized in Backstage.
+With the ability to create a plethora of components in Backstage, how does one keep track of all the software in the ecosystem? Therein lies the highlight feature of Phase 2: the [Service Catalog](https://github.com/spotify/backstage/milestone/4). The service catalog โ or software catalog โ is a centralized system that keeps track of ownership and metadata about all software in your ecosystem. The catalog is built around the concept of [metadata yaml files](/docs/architecture-decisions/adr002-default-catalog-file-format.md) stored together with the code, which are then harvested and visualized in Backstage.

diff --git a/microsite/blog/2020-06-22-backstage-service-catalog-alpha.md b/microsite/blog/2020-06-22-backstage-service-catalog-alpha.md
index a352faf0cb..0928b8769b 100644
--- a/microsite/blog/2020-06-22-backstage-service-catalog-alpha.md
+++ b/microsite/blog/2020-06-22-backstage-service-catalog-alpha.md
@@ -24,7 +24,7 @@ With these insights we decided to re-focus our efforts towards the most requeste
## What is the service catalog?
-The Backstage Service Catalog โ actually, a software catalog, since it includes more than just services โ is a centralized system that keeps track of ownership and metadata for all the software in your ecosystem (services, websites, libraries, data pipelines, etc). The catalog is built around the concept of [metadata yaml files](https://github.com/spotify/backstage/blob/master/docs/architecture-decisions/adr002-default-catalog-file-format.md#format) stored together with the code, which are then harvested and visualized in Backstage.
+The Backstage Service Catalog โ actually, a software catalog, since it includes more than just services โ is a centralized system that keeps track of ownership and metadata for all the software in your ecosystem (services, websites, libraries, data pipelines, etc). The catalog is built around the concept of [metadata yaml files](/docs/architecture-decisions/adr002-default-catalog-file-format.md#format) stored together with the code, which are then harvested and visualized in Backstage.
This was our pitch for the virtues of a service catalog when we first [announced](https://backstage.io/blog/2020/05/22/phase-2-service-catalog) it as part of Phase 2:
diff --git a/microsite/blog/2020-07-01-how-to-enable-authentication-in-backstage-using-passport.md b/microsite/blog/2020-07-01-how-to-enable-authentication-in-backstage-using-passport.md
index 5111f5c726..ccdd8b34c6 100644
--- a/microsite/blog/2020-07-01-how-to-enable-authentication-in-backstage-using-passport.md
+++ b/microsite/blog/2020-07-01-how-to-enable-authentication-in-backstage-using-passport.md
@@ -39,7 +39,7 @@ Getting started is really straightforward, and can be broadly broken down into f
4. Add the provider to the backend.
5. Add a frontend Auth Utility API.
-For full details, take a look at our [โAdding authentication providersโ documentation](https://github.com/spotify/backstage/blob/master/docs/auth/add-auth-provider.md) and at the [excellent documentation](http://www.passportjs.org/docs/) provided by Passport.
+For full details, take a look at our [โAdding authentication providersโ documentation](/docs/auth/add-auth-provider.md) and at the [excellent documentation](http://www.passportjs.org/docs/) provided by Passport.
## Interested in contributing to the next steps for authentication?
diff --git a/microsite/blog/2020-08-05-announcing-backstage-software-templates.md b/microsite/blog/2020-08-05-announcing-backstage-software-templates.md
index 79b5ec45fd..6143442782 100644
--- a/microsite/blog/2020-08-05-announcing-backstage-software-templates.md
+++ b/microsite/blog/2020-08-05-announcing-backstage-software-templates.md
@@ -35,11 +35,11 @@ Since the templates can be customized to integrate with your existing infrastruc
### Golden Paths pave the way
-You can customize Backstage Software Templates to fit your organizationโs standards. Using Go instead of Java? CircleCI instead of Jenkins? Serverless instead of Kubernetes? GCP instead of AWS? [Make your own recipes for any software component](https://github.com/spotify/backstage/blob/master/docs/features/software-templates/adding-templates.md) and your best practices will be baked right in.
+You can customize Backstage Software Templates to fit your organizationโs standards. Using Go instead of Java? CircleCI instead of Jenkins? Serverless instead of Kubernetes? GCP instead of AWS? [Make your own recipes for any software component](/docs/features/software-templates/adding-templates.md) and your best practices will be baked right in.
## Getting started
-The sample Software Templates are available under `/create`. If you're setting up Backstage for the first time, follow [Getting Started with Backstage](https://github.com/spotify/backstage/blob/master/docs/getting-started/index.md) and go to `http://localhost:3000/create`. If youโve already been running Backstage locally, run the command `yarn lerna run mock-data` to load the new sample templates into the Service Catalog first.
+The sample Software Templates are available under `/create`. If you're setting up Backstage for the first time, follow [Getting Started with Backstage](/docs/getting-started/index.md) and go to `http://localhost:3000/create`. If youโve already been running Backstage locally, run the command `yarn lerna run mock-data` to load the new sample templates into the Service Catalog first.

@@ -69,7 +69,7 @@ New components, of course, get added automatically to the Backstage Service Cata
## Define your standards
-Backstage ships with four example templates, but since these are likely not the (only) ones you want to promote inside your company, the next step is to add [your own templates](https://github.com/spotify/backstage/blob/master/docs/features/software-templates/adding-templates.md). Using Backstageโs Software Templates feature, itโs easy to help your engineers get started building software with your organizationโs best practices built-in.
+Backstage ships with four example templates, but since these are likely not the (only) ones you want to promote inside your company, the next step is to add [your own templates](/docs/features/software-templates/adding-templates.md). Using Backstageโs Software Templates feature, itโs easy to help your engineers get started building software with your organizationโs best practices built-in.
We have learned that one of the keys to getting these standards adopted is to keep an open process. Templates are code. By making it clear to your engineers that you are open to pull requests, and that teams with different needs can add their own templates, you are on the path of striking a good balance between autonomy and standardization.
diff --git a/microsite/i18n/en.json b/microsite/i18n/en.json
index f190546dfc..af891426db 100644
--- a/microsite/i18n/en.json
+++ b/microsite/i18n/en.json
@@ -6,218 +6,233 @@
"tagline": "An open platform for building developer portals",
"docs": {
"api/backend": {
- "title": "api/backend"
+ "title": "Backend"
},
"api/utility-apis": {
- "title": "api/utility-apis"
+ "title": "Utility APIs"
},
- "architecture-decisions/adr001-add-adr-log": {
- "title": "architecture-decisions/adr001-add-adr-log"
+ "architecture-decisions/adrs-adr001": {
+ "title": "ADR001: Architecture Decision Record (ADR) log",
+ "sidebar_label": "ADR001"
},
- "architecture-decisions/adr002-default-catalog-file-format": {
- "title": "architecture-decisions/adr002-default-catalog-file-format"
+ "architecture-decisions/adrs-adr002": {
+ "title": "ADR002: Default Software Catalog File Format",
+ "sidebar_label": "ADR002"
},
- "architecture-decisions/adr003-avoid-default-exports": {
- "title": "architecture-decisions/adr003-avoid-default-exports"
+ "architecture-decisions/adrs-adr003": {
+ "title": "ADR003: Avoid Default Exports and Prefer Named Exports",
+ "sidebar_label": "ADR003"
},
- "architecture-decisions/adr004-module-export-structure": {
- "title": "architecture-decisions/adr004-module-export-structure"
+ "architecture-decisions/adrs-adr004": {
+ "title": "ADR004: Module Export Structure",
+ "sidebar_label": "ADR004"
},
- "architecture-decisions/adr005-catalog-core-entities": {
- "title": "architecture-decisions/adr005-catalog-core-entities"
+ "architecture-decisions/adrs-adr005": {
+ "title": "ADR005: Catalog Core Entities",
+ "sidebar_label": "ADR005"
},
- "architecture-decisions/adr006-avoid-react-fc": {
- "title": "architecture-decisions/adr006-avoid-react-fc"
+ "architecture-decisions/adrs-adr006": {
+ "title": "ADR006: Avoid React.FC and React.SFC",
+ "sidebar_label": "ADR006"
},
- "architecture-decisions/adr007-use-msw-to-mock-service-requests": {
- "title": "architecture-decisions/adr007-use-msw-to-mock-service-requests"
+ "architecture-decisions/adrs-adr007": {
+ "title": "ADR007: Use MSW to mock http requests",
+ "sidebar_label": "ADR007"
},
- "architecture-decisions/adr008-default-catalog-file-name": {
- "title": "architecture-decisions/adr008-default-catalog-file-name"
+ "architecture-decisions/adrs-adr008": {
+ "title": "ADR008: Default Catalog File Name",
+ "sidebar_label": "ADR008"
},
- "architecture-decisions/index": {
- "title": "architecture-decisions/index"
+ "architecture-decisions/adrs-overview": {
+ "title": "Architecture Decision Records (ADR)",
+ "sidebar_label": "Overview"
},
"auth/add-auth-provider": {
- "title": "auth/add-auth-provider"
+ "title": "Adding authentication providers"
},
"auth/auth-backend": {
- "title": "auth/auth-backend"
+ "title": "Auth backend"
},
"auth/glossary": {
- "title": "auth/glossary"
+ "title": "Glossary"
},
"auth/index": {
- "title": "auth/index"
+ "title": "User Authentication and Authorization in Backstage"
},
"auth/oauth": {
- "title": "auth/oauth"
+ "title": "OAuth and OpenID Connect"
},
"conf/defining": {
- "title": "conf/defining"
+ "title": "Defining Configuration for your Plugin"
},
"conf/index": {
- "title": "conf/index"
+ "title": "Static Configuration in Backstage"
},
"conf/reading": {
- "title": "conf/reading"
+ "title": "Reading Backstage Configuration"
},
"conf/writing": {
- "title": "conf/writing"
+ "title": "Writing Backstage Configuration Files"
},
"dls/contributing-to-storybook": {
- "title": "dls/contributing-to-storybook"
+ "title": "Contributing to Storybook"
},
"dls/design": {
- "title": "dls/design"
+ "title": "Design"
},
"dls/figma": {
- "title": "dls/figma"
+ "title": "Figma"
},
"FAQ": {
"title": "FAQ"
},
- "features/software-catalog/api": {
- "title": "features/software-catalog/api"
+ "features/software-catalog/software-catalog-api": {
+ "title": "API"
},
"features/software-catalog/descriptor-format": {
- "title": "features/software-catalog/descriptor-format"
+ "title": "Descriptor Format of Catalog Entities",
+ "sidebar_label": "YAML File Format"
},
"features/software-catalog/extending-the-model": {
- "title": "features/software-catalog/extending-the-model"
+ "title": "Extending the model"
},
"features/software-catalog/external-integrations": {
- "title": "features/software-catalog/external-integrations"
+ "title": "External integrations"
},
- "features/software-catalog/index": {
- "title": "features/software-catalog/index"
+ "features/software-catalog/software-catalog-overview": {
+ "title": "Backstage Service Catalog (alpha)"
},
- "features/software-catalog/populating": {
- "title": "features/software-catalog/populating"
+ "features/software-catalog/installation": {
+ "title": "features/software-catalog/installation"
},
"features/software-catalog/system-model": {
- "title": "features/software-catalog/system-model"
+ "title": "System Model"
},
"features/software-templates/adding-templates": {
- "title": "features/software-templates/adding-templates"
+ "title": "Adding your own Templates"
},
- "features/software-templates/extending/create-your-own-preparer": {
- "title": "features/software-templates/extending/create-your-own-preparer"
+ "features/software-templates/extending/extending-preparer": {
+ "title": "Create your own Preparer"
},
- "features/software-templates/extending/create-your-own-publisher": {
- "title": "features/software-templates/extending/create-your-own-publisher"
+ "features/software-templates/extending/extending-publisher": {
+ "title": "Create your own Publisher"
},
- "features/software-templates/extending/create-your-own-templater": {
- "title": "features/software-templates/extending/create-your-own-templater"
+ "features/software-templates/extending/extending-templater": {
+ "title": "Creating your own Templater"
},
- "features/software-templates/extending/index": {
- "title": "features/software-templates/extending/index"
+ "features/software-templates/extending/extending-index": {
+ "title": "Extending the Scaffolder"
},
- "features/software-templates/index": {
- "title": "features/software-templates/index"
+ "features/software-templates/software-templates-index": {
+ "title": "Software Templates"
+ },
+ "features/software-templates/installation": {
+ "title": "features/software-templates/installation"
},
"features/techdocs/concepts": {
- "title": "features/techdocs/concepts"
+ "title": "Concepts"
},
"features/techdocs/creating-and-publishing": {
- "title": "features/techdocs/creating-and-publishing"
+ "title": "Creating and publishing your docs",
+ "sidebar_label": "Creating and Publishing Documentation"
},
- "features/techdocs/FAQ": {
- "title": "features/techdocs/FAQ"
+ "features/techdocs/faqs": {
+ "title": "TechDocs FAQ",
+ "sidebar_label": "FAQ"
},
"features/techdocs/getting-started": {
- "title": "features/techdocs/getting-started"
+ "title": "Getting Started"
},
- "features/techdocs/README": {
- "title": "features/techdocs/README"
+ "features/techdocs/techdocs-overview": {
+ "title": "TechDocs Documentation",
+ "sidebar_label": "Overview"
},
"getting-started/app-custom-theme": {
- "title": "getting-started/app-custom-theme"
+ "title": "Customize the look-and-feel of your App"
},
"getting-started/configure-app-with-plugins": {
- "title": "getting-started/configure-app-with-plugins"
+ "title": "Configuring App with plugins"
},
"getting-started/create-an-app": {
- "title": "getting-started/create-an-app"
+ "title": "Create an App"
},
"getting-started/deployment-k8s": {
- "title": "getting-started/deployment-k8s"
+ "title": "Kubernetes"
},
"getting-started/deployment-other": {
- "title": "getting-started/deployment-other"
+ "title": "Other"
},
"getting-started/development-environment": {
- "title": "getting-started/development-environment"
+ "title": "Development Environment"
},
- "getting-started/getting-started-index": {
- "title": "Getting started",
- "sidebar_label": "Getting started"
+ "getting-started/index": {
+ "title": "Running Backstage Locally"
},
"getting-started/installation": {
- "title": "getting-started/installation"
+ "title": "Installation"
},
"journey": {
"title": "journey"
},
"overview/architecture-overview": {
- "title": "overview/architecture-overview"
+ "title": "Architecture overview"
},
"overview/architecture-terminology": {
- "title": "overview/architecture-terminology"
+ "title": "Architecture terminology"
},
"overview/roadmap": {
- "title": "overview/roadmap"
+ "title": "Project roadmap"
},
"overview/support": {
- "title": "overview/support"
+ "title": "Support and community"
},
"overview/what-is-backstage": {
- "title": "overview/what-is-backstage"
+ "title": "What is Backstage?"
},
"plugins/backend-plugin": {
- "title": "plugins/backend-plugin"
+ "title": "Backend plugin"
},
"plugins/call-existing-api": {
- "title": "plugins/call-existing-api"
+ "title": "Call existing API"
},
"plugins/create-a-plugin": {
- "title": "plugins/create-a-plugin"
+ "title": "Create a Backstage Plugin"
},
"plugins/existing-plugins": {
- "title": "plugins/existing-plugins"
+ "title": "Existing plugins"
},
"plugins/index": {
- "title": "plugins/index"
+ "title": "Intro"
},
"plugins/plugin-development": {
- "title": "plugins/plugin-development"
+ "title": "Plugin Development in Backstage"
},
"plugins/proxying": {
- "title": "plugins/proxying"
+ "title": "Proxying"
},
"plugins/publish-private": {
- "title": "plugins/publish-private"
+ "title": "Publish private"
},
"plugins/publishing": {
- "title": "plugins/publishing"
+ "title": "Publishing"
},
"plugins/structure-of-a-plugin": {
- "title": "plugins/structure-of-a-plugin"
+ "title": "Structure of a Plugin"
},
"plugins/testing": {
- "title": "plugins/testing"
+ "title": "Testing with Jest"
},
"README": {
"title": "README"
},
"reference/createPlugin-feature-flags": {
- "title": "reference/createPlugin-feature-flags"
+ "title": "createPlugin - feature flags"
},
"reference/createPlugin-router": {
- "title": "reference/createPlugin-router"
+ "title": "createPlugin - router"
},
"reference/createPlugin": {
- "title": "reference/createPlugin"
+ "title": "createPlugin"
},
"reference/utility-apis/AlertApi": {
"title": "reference/utility-apis/AlertApi"
@@ -253,7 +268,7 @@
"title": "reference/utility-apis/ProfileInfoApi"
},
"reference/utility-apis/README": {
- "title": "reference/utility-apis/README"
+ "title": "Utility API References"
},
"reference/utility-apis/SessionStateApi": {
"title": "reference/utility-apis/SessionStateApi"
@@ -262,7 +277,7 @@
"title": "reference/utility-apis/StorageApi"
},
"tutorials/index": {
- "title": "tutorials/index"
+ "title": "Overview"
}
},
"links": {
@@ -274,12 +289,19 @@
"Newsletter": "Newsletter"
},
"categories": {
+ "Overview": "Overview",
"Getting Started": "Getting Started",
+ "Features": "Features",
"Plugins": "Plugins",
- "Test": "Test",
- "API Overview": "API Overview",
- "Layout components": "Layout components",
- "Testing": "Testing"
+ "Configuration": "Configuration",
+ "Auth and identity": "Auth and identity",
+ "Designing for Backstage": "Designing for Backstage",
+ "API references": "API references",
+ "Tutorials": "Tutorials",
+ "Architecture Decision Records (ADRs)": "Architecture Decision Records (ADRs)",
+ "Contribute": "Contribute",
+ "Support": "Support",
+ "FAQ": "FAQ"
}
},
"pages-strings": {
diff --git a/microsite/package.json b/microsite/package.json
index 26c1b62f43..6a10628b5a 100644
--- a/microsite/package.json
+++ b/microsite/package.json
@@ -2,6 +2,7 @@
"version": "1.0.0",
"name": "backstage-microsite",
"license": "Apache-2.0",
+ "private": true,
"scripts": {
"examples": "docusaurus-examples",
"start": "docusaurus-start",
@@ -12,6 +13,6 @@
"rename-version": "docusaurus-rename-version"
},
"devDependencies": {
- "docusaurus": "^1.14.4"
+ "docusaurus": "^2.0.0-alpha.61"
}
}
diff --git a/microsite/sidebars.json b/microsite/sidebars.json
index 1ac34b308a..d407340471 100644
--- a/microsite/sidebars.json
+++ b/microsite/sidebars.json
@@ -1,17 +1,149 @@
{
"docs": {
- "Getting Started": ["getting-started/getting-started-index"],
- "Plugins": [
- "developing-a-plugin",
- "plugin-api",
- "create-plugin-api-v2",
- "plugin-structure",
- "components",
- "errors-notifications"
+ "Overview": [
+ "overview/what-is-backstage",
+ "overview/architecture-overview",
+ "overview/architecture-terminology",
+ "overview/roadmap"
],
- "Test": ["test"],
- "API Overview": ["apis"],
- "Layout components": ["layout-components"],
- "Testing": ["testing-with-jest"]
+ "Getting Started": [
+ "getting-started/index",
+ "getting-started/installation",
+ "getting-started/development-environment",
+ "getting-started/create-an-app",
+ {
+ "type": "subcategory",
+ "label": "App configuration",
+ "ids": [
+ "getting-started/configure-app-with-plugins",
+ "getting-started/app-custom-theme"
+ ]
+ },
+ {
+ "type": "subcategory",
+ "label": "Deployment",
+ "ids": [
+ "getting-started/deployment-k8s",
+ "getting-started/deployment-other"
+ ]
+ }
+ ],
+ "Features": [
+ {
+ "type": "subcategory",
+ "label": "Software Catalog",
+ "ids": [
+ "features/software-catalog/software-catalog-overview",
+ "features/software-catalog/system-model",
+ "features/software-catalog/descriptor-format",
+ "features/software-catalog/populating-catalog",
+ "features/software-catalog/extending-the-model",
+ "features/software-catalog/external-integrations",
+ "features/software-catalog/software-catalog-api"
+ ]
+ },
+ {
+ "type": "subcategory",
+ "label": "Software creation templates",
+ "ids": [
+ "features/software-templates/software-templates-index",
+ "features/software-templates/adding-templates",
+ "features/software-templates/extending/extending-index",
+ "features/software-templates/extending/extending-templater",
+ "features/software-templates/extending/extending-publisher",
+ "features/software-templates/extending/extending-preparer"
+ ]
+ },
+ {
+ "type": "subcategory",
+ "label": "Docs-like-code",
+ "ids": [
+ "features/techdocs/techdocs-overview",
+ "features/techdocs/getting-started",
+ "features/techdocs/concepts",
+ "features/techdocs/creating-and-publishing",
+ "features/techdocs/faqs"
+ ]
+ }
+ ],
+ "Plugins": [
+ "plugins/index",
+ "plugins/existing-plugins",
+ "plugins/create-a-plugin",
+ "plugins/plugin-development",
+ "plugins/structure-of-a-plugin",
+ {
+ "type": "subcategory",
+ "label": "Backends and APIs",
+ "ids": [
+ "plugins/proxying",
+ "plugins/backend-plugin",
+ "plugins/call-existing-api"
+ ]
+ },
+ {
+ "type": "subcategory",
+ "label": "Testing",
+ "ids": ["plugins/testing"]
+ },
+ {
+ "type": "subcategory",
+ "label": "Publishing",
+ "ids": ["plugins/publishing", "plugins/publish-private"]
+ }
+ ],
+ "Configuration": [
+ "conf/index",
+ "conf/reading",
+ "conf/writing",
+ "conf/defining"
+ ],
+ "Auth and identity": [
+ "auth/index",
+ "auth/add-auth-provider",
+ "auth/auth-backend",
+ "auth/oauth",
+ "auth/glossary",
+ "auth/auth-backend-classes"
+ ],
+
+ "Designing for Backstage": [
+ "dls/design",
+ "dls/contributing-to-storybook",
+ "dls/figma"
+ ],
+ "API references": [
+ {
+ "type": "subcategory",
+ "label": "TypeScript API",
+ "ids": [
+ "api/utility-apis",
+ "reference/utility-apis/README",
+ "reference/createPlugin",
+ "reference/createPlugin-feature-flags",
+ "reference/createPlugin-router"
+ ]
+ },
+ {
+ "type": "subcategory",
+ "label": "Backend APIs",
+ "ids": ["api/backend"]
+ }
+ ],
+ "Tutorials": ["tutorials/index"],
+ "Architecture Decision Records (ADRs)": [
+ "architecture-decisions/adrs-overview",
+ "architecture-decisions/adrs-adr001",
+ "architecture-decisions/adrs-adr002",
+ "architecture-decisions/adrs-adr003",
+ "architecture-decisions/adrs-adr004",
+ "architecture-decisions/adrs-adr005",
+ "architecture-decisions/adrs-adr006",
+ "architecture-decisions/adrs-adr007",
+ "architecture-decisions/adrs-adr008"
+ ],
+ "Contribute": ["../CONTRIBUTING"],
+ "Support": ["overview/support"],
+ "FAQ": ["FAQ"]
}
}
diff --git a/microsite/siteConfig.js b/microsite/siteConfig.js
index f9dd3877bf..f0c8ce5fa5 100644
--- a/microsite/siteConfig.js
+++ b/microsite/siteConfig.js
@@ -38,10 +38,10 @@ const siteConfig = {
href: 'https://github.com/spotify/backstage#backstage',
label: 'GitHub',
},
- // {
- // doc: 'getting-started/getting-started-index',
- // label: 'Docs',
- // },
+ {
+ doc: 'overview/what-is-backstage',
+ label: 'Docs',
+ },
{
page: 'blog',
blog: true,
diff --git a/microsite/yarn.lock b/microsite/yarn.lock
deleted file mode 100644
index f56169f297..0000000000
--- a/microsite/yarn.lock
+++ /dev/null
@@ -1,6652 +0,0 @@
-# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
-# yarn lockfile v1
-
-
-"@babel/code-frame@7.5.5":
- version "7.5.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
- integrity sha1-vAeC9tafe31JUxIZaZuYj2aaj50=
- dependencies:
- "@babel/highlight" "^7.0.0"
-
-"@babel/code-frame@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a"
- integrity sha1-Fo2ho26Q2miujUnA8bSMfGJJITo=
- dependencies:
- "@babel/highlight" "^7.10.4"
-
-"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c"
- integrity sha1-6fc+/gmvE1W3I6fzmxG61jfXyZw=
- dependencies:
- browserslist "^4.12.0"
- invariant "^2.2.4"
- semver "^5.5.0"
-
-"@babel/core@^7.9.0":
- version "7.11.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643"
- integrity sha1-LFW2BOc6QNwhsOUmULEcZc8nZkM=
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.11.0"
- "@babel/helper-module-transforms" "^7.11.0"
- "@babel/helpers" "^7.10.4"
- "@babel/parser" "^7.11.1"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.11.0"
- "@babel/types" "^7.11.0"
- convert-source-map "^1.7.0"
- debug "^4.1.0"
- gensync "^1.0.0-beta.1"
- json5 "^2.1.2"
- lodash "^4.17.19"
- resolve "^1.3.2"
- semver "^5.4.1"
- source-map "^0.5.0"
-
-"@babel/generator@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/generator/-/generator-7.11.0.tgz#4b90c78d8c12825024568cbe83ee6c9af193585c"
- integrity sha1-S5DHjYwSglAkVoy+g+5smvGTWFw=
- dependencies:
- "@babel/types" "^7.11.0"
- jsesc "^2.5.1"
- source-map "^0.5.0"
-
-"@babel/helper-annotate-as-pure@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3"
- integrity sha1-W/DUlaP3V6w72ki1vzs7ownHK6M=
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3"
- integrity sha1-uwt18xv5jL+f8UPBrleLhydK4aM=
- dependencies:
- "@babel/helper-explode-assignable-expression" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-builder-react-jsx-experimental@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.10.5.tgz#f35e956a19955ff08c1258e44a515a6d6248646b"
- integrity sha1-816VahmVX/CMEljkSlFabWJIZGs=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-module-imports" "^7.10.4"
- "@babel/types" "^7.10.5"
-
-"@babel/helper-builder-react-jsx@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d"
- integrity sha1-gJXN2/+Fjm+pwyba7lSi8nMsHV0=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-compilation-targets@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2"
- integrity sha1-gEro4/BDdmB8x5G51H1UAnYzK9I=
- dependencies:
- "@babel/compat-data" "^7.10.4"
- browserslist "^4.12.0"
- invariant "^2.2.4"
- levenary "^1.1.1"
- semver "^5.5.0"
-
-"@babel/helper-create-class-features-plugin@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d"
- integrity sha1-n2FEa6gOgkCwpchcb9rIRZ1vJZ0=
- dependencies:
- "@babel/helper-function-name" "^7.10.4"
- "@babel/helper-member-expression-to-functions" "^7.10.5"
- "@babel/helper-optimise-call-expression" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-replace-supers" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.10.4"
-
-"@babel/helper-create-regexp-features-plugin@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8"
- integrity sha1-/dYNiFJGWaC2lZwFeZJeQlcU87g=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-regex" "^7.10.4"
- regexpu-core "^4.7.0"
-
-"@babel/helper-define-map@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30"
- integrity sha1-tTwQ23imQIABUmkrEzkxR6y5uzA=
- dependencies:
- "@babel/helper-function-name" "^7.10.4"
- "@babel/types" "^7.10.5"
- lodash "^4.17.19"
-
-"@babel/helper-explode-assignable-expression@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.10.4.tgz#40a1cd917bff1288f699a94a75b37a1a2dbd8c7c"
- integrity sha1-QKHNkXv/Eoj2malKdbN6Gi29jHw=
- dependencies:
- "@babel/traverse" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-function-name@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-function-name/-/helper-function-name-7.10.4.tgz#d2d3b20c59ad8c47112fa7d2a94bc09d5ef82f1a"
- integrity sha1-0tOyDFmtjEcRL6fSqUvAnV74Lxo=
- dependencies:
- "@babel/helper-get-function-arity" "^7.10.4"
- "@babel/template" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-get-function-arity@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-get-function-arity/-/helper-get-function-arity-7.10.4.tgz#98c1cbea0e2332f33f9a4661b8ce1505b2c19ba2"
- integrity sha1-mMHL6g4jMvM/mkZhuM4VBbLBm6I=
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-hoist-variables@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz#d49b001d1d5a68ca5e6604dda01a6297f7c9381e"
- integrity sha1-1JsAHR1aaMpeZgTdoBpil/fJOB4=
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df"
- integrity sha1-rmnIPYTugvS0L5bioJQQk1qPJt8=
- dependencies:
- "@babel/types" "^7.11.0"
-
-"@babel/helper-module-imports@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-module-imports/-/helper-module-imports-7.10.4.tgz#4c5c54be04bd31670a7382797d75b9fa2e5b5620"
- integrity sha1-TFxUvgS9MWcKc4J5fXW5+i5bViA=
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359"
- integrity sha1-sW8lAinkchGr3YSzS2RzfCqy01k=
- dependencies:
- "@babel/helper-module-imports" "^7.10.4"
- "@babel/helper-replace-supers" "^7.10.4"
- "@babel/helper-simple-access" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.11.0"
- "@babel/template" "^7.10.4"
- "@babel/types" "^7.11.0"
- lodash "^4.17.19"
-
-"@babel/helper-optimise-call-expression@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.10.4.tgz#50dc96413d594f995a77905905b05893cd779673"
- integrity sha1-UNyWQT1ZT5lad5BZBbBYk813lnM=
- dependencies:
- "@babel/types" "^7.10.4"
-
-"@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.4.tgz#2f75a831269d4f677de49986dff59927533cf375"
- integrity sha1-L3WoMSadT2d95JmG3/WZJ1M883U=
-
-"@babel/helper-regex@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0"
- integrity sha1-Mt+7eYmQc8QVVXBToZvQVarlCuA=
- dependencies:
- lodash "^4.17.19"
-
-"@babel/helper-remap-async-to-generator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.10.4.tgz#fce8bea4e9690bbe923056ded21e54b4e8b68ed5"
- integrity sha1-/Oi+pOlpC76SMFbe0h5UtOi2jtU=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-wrap-function" "^7.10.4"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-replace-supers@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf"
- integrity sha1-1YXNk4jqBuYDHkzUS2cTy+rZ5s8=
- dependencies:
- "@babel/helper-member-expression-to-functions" "^7.10.4"
- "@babel/helper-optimise-call-expression" "^7.10.4"
- "@babel/traverse" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-simple-access@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-simple-access/-/helper-simple-access-7.10.4.tgz#0f5ccda2945277a2a7a2d3a821e15395edcf3461"
- integrity sha1-D1zNopRSd6KnotOoIeFTle3PNGE=
- dependencies:
- "@babel/template" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helper-skip-transparent-expression-wrappers@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729"
- integrity sha1-7sFi8RLC9Y068K8SXju1dmUUZyk=
- dependencies:
- "@babel/types" "^7.11.0"
-
-"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f"
- integrity sha1-+KSRJErPamdhWKxCBykRuoOtCZ8=
- dependencies:
- "@babel/types" "^7.11.0"
-
-"@babel/helper-validator-identifier@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-validator-identifier/-/helper-validator-identifier-7.10.4.tgz#a78c7a7251e01f616512d31b10adcf52ada5e0d2"
- integrity sha1-p4x6clHgH2FlEtMbEK3PUq2l4NI=
-
-"@babel/helper-wrap-function@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87"
- integrity sha1-im9wHqsP8592W1oc/vQJmQ5iS4c=
- dependencies:
- "@babel/helper-function-name" "^7.10.4"
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/helpers@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044"
- integrity sha1-Kr6w1yGv98Cpc3a54fb2XXpHUEQ=
- dependencies:
- "@babel/template" "^7.10.4"
- "@babel/traverse" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/highlight@^7.0.0", "@babel/highlight@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143"
- integrity sha1-fRvf1ldTU4+r5sOFls23bZrGAUM=
- dependencies:
- "@babel/helper-validator-identifier" "^7.10.4"
- chalk "^2.0.0"
- js-tokens "^4.0.0"
-
-"@babel/parser@^7.10.4", "@babel/parser@^7.11.0", "@babel/parser@^7.11.1":
- version "7.11.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/parser/-/parser-7.11.3.tgz#9e1eae46738bcd08e23e867bab43e7b95299a8f9"
- integrity sha1-nh6uRnOLzQjiPoZ7q0PnuVKZqPk=
-
-"@babel/plugin-proposal-async-generator-functions@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558"
- integrity sha1-NJHKvy98F5q4IGBs7Cf+0V4OhVg=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-remap-async-to-generator" "^7.10.4"
- "@babel/plugin-syntax-async-generators" "^7.8.0"
-
-"@babel/plugin-proposal-class-properties@^7.10.4", "@babel/plugin-proposal-class-properties@^7.8.3":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807"
- integrity sha1-ozv2Mto5ClnHqMVwBF0RFc13iAc=
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-proposal-dynamic-import@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e"
- integrity sha1-uleibLmLN3QenVvKG4sN34KR8X4=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
-
-"@babel/plugin-proposal-export-namespace-from@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54"
- integrity sha1-Vw2IO5EDFjez4pWO6jxDjmLAX1Q=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
-
-"@babel/plugin-proposal-json-strings@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db"
- integrity sha1-WT5ZxjUoFgIzvTIbGuvgggwjQds=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-json-strings" "^7.8.0"
-
-"@babel/plugin-proposal-logical-assignment-operators@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8"
- integrity sha1-n4DkgsAwg8hxJd7hACa1hSfqIMg=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
-
-"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a"
- integrity sha1-AqfpYfwy5tWy2wZJ4Bv4Dd7n4Eo=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
-
-"@babel/plugin-proposal-numeric-separator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06"
- integrity sha1-zhWQ/wplrRKXCmCdeIVemkwa7wY=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
-
-"@babel/plugin-proposal-object-rest-spread@^7.11.0", "@babel/plugin-proposal-object-rest-spread@^7.9.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af"
- integrity sha1-vYH5Wh90Z2DqQ7bC09YrEXkK0K8=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-transform-parameters" "^7.10.4"
-
-"@babel/plugin-proposal-optional-catch-binding@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd"
- integrity sha1-Mck4MJ0kp4pJ1o/av/qoY3WFVN0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
-
-"@babel/plugin-proposal-optional-chaining@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076"
- integrity sha1-3lhm0GRvav2quKVmOC/joiF1UHY=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
-
-"@babel/plugin-proposal-private-methods@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909"
- integrity sha1-sWDZcrj9ulx9ERoUX8jEIfwqaQk=
- dependencies:
- "@babel/helper-create-class-features-plugin" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-proposal-unicode-property-regex@^7.10.4", "@babel/plugin-proposal-unicode-property-regex@^7.4.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d"
- integrity sha1-RIPNpTBBzjQTt/4vAAImZd36p10=
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-async-generators@^7.8.0":
- version "7.8.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d"
- integrity sha1-qYP7Gusuw/btBCohD2QOkOeG/g0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-class-properties@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c"
- integrity sha1-ZkTmoLqlWmH54yMfbJ7rbuRsEkw=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-dynamic-import@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3"
- integrity sha1-Yr+Ysto80h1iYVT8lu5bPLaOrLM=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-export-namespace-from@^7.8.3":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a"
- integrity sha1-AolkqbqA28CUyRXEh618TnpmRlo=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.3"
-
-"@babel/plugin-syntax-json-strings@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a"
- integrity sha1-AcohtmjNghjJ5kDLbdiMVBKyyWo=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-jsx@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c"
- integrity sha1-Oauq48v3EMQ3PYQpSE5rohNAFmw=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-logical-assignment-operators@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699"
- integrity sha1-ypHvRjA1MESLkGZSusLp/plB9pk=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9"
- integrity sha1-Fn7XA2iIYIH3S1w2xlqIwDtm0ak=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-numeric-separator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97"
- integrity sha1-ubBws+M1cM2f0Hun+pHA3Te5r5c=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-syntax-object-rest-spread@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871"
- integrity sha1-YOIl7cvZimQDMqLnLdPmbxr1WHE=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-catch-binding@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1"
- integrity sha1-YRGiZbz7Ag6579D9/X0mQCue1sE=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-optional-chaining@^7.8.0":
- version "7.8.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a"
- integrity sha1-T2nCq5UWfgGAzVM2YT+MV4j31Io=
- dependencies:
- "@babel/helper-plugin-utils" "^7.8.0"
-
-"@babel/plugin-syntax-top-level-await@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d"
- integrity sha1-S764kXtU/PdoNk4KgfVg4zo+9X0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-arrow-functions@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd"
- integrity sha1-4ilg135pfHT0HFAdRNc9v4pqZM0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-async-to-generator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37"
- integrity sha1-QaUBfknrbzzak5KlHu8pQFskWjc=
- dependencies:
- "@babel/helper-module-imports" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-remap-async-to-generator" "^7.10.4"
-
-"@babel/plugin-transform-block-scoped-functions@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8"
- integrity sha1-GvpZV0T3XkOpGvc7DZmOz+Trwug=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-block-scoping@^7.10.4":
- version "7.11.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215"
- integrity sha1-W37+mIUr741lLAsoFEzZOp5LUhU=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-classes@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7"
- integrity sha1-QFE2rys+IYvEoZJiKLyRerGgrcc=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-define-map" "^7.10.4"
- "@babel/helper-function-name" "^7.10.4"
- "@babel/helper-optimise-call-expression" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-replace-supers" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.10.4"
- globals "^11.1.0"
-
-"@babel/plugin-transform-computed-properties@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb"
- integrity sha1-ne2DqBboLe0o1S1LTsvdgQzfwOs=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-destructuring@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5"
- integrity sha1-cN3Ss9G+qD0BUJ6bsl3bOnT8heU=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-dotall-regex@^7.10.4", "@babel/plugin-transform-dotall-regex@^7.4.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee"
- integrity sha1-RpwgYhBcHragQOr0+sS0iAeDle4=
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-duplicate-keys@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47"
- integrity sha1-aX5Qyf7hQ4D+hD0fMGspVhdDHkc=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-exponentiation-operator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e"
- integrity sha1-WuM4xX+M9AAb2zVgeuZrktZlry4=
- dependencies:
- "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-for-of@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9"
- integrity sha1-wIiS6IGdOl2ykDGxFa9RHbv+uuk=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-function-name@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7"
- integrity sha1-akZ4gOD8ljhRS6NpERgR3b4mRLc=
- dependencies:
- "@babel/helper-function-name" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-literals@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c"
- integrity sha1-n0K6CEEQChNfInEtDjkcRi9XHzw=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-member-expression-literals@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7"
- integrity sha1-sexE/PGVr8uNssYs2OVRyIG6+Lc=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-modules-amd@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1"
- integrity sha1-G5zdrwXZ6Is6rTOcs+RFxPAgqbE=
- dependencies:
- "@babel/helper-module-transforms" "^7.10.5"
- "@babel/helper-plugin-utils" "^7.10.4"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-commonjs@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0"
- integrity sha1-ZmZ8Pu2h6/eJbUHx8WsXEFovvKA=
- dependencies:
- "@babel/helper-module-transforms" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-simple-access" "^7.10.4"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-systemjs@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85"
- integrity sha1-YnAJnIVAZmgbrp4F+H4bnK2+jIU=
- dependencies:
- "@babel/helper-hoist-variables" "^7.10.4"
- "@babel/helper-module-transforms" "^7.10.5"
- "@babel/helper-plugin-utils" "^7.10.4"
- babel-plugin-dynamic-import-node "^2.3.3"
-
-"@babel/plugin-transform-modules-umd@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e"
- integrity sha1-moSB/oG4JGVLOgtl2j34nz0hg54=
- dependencies:
- "@babel/helper-module-transforms" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6"
- integrity sha1-eLTZeIELbzvPA/njGPL8DtQa7LY=
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.4"
-
-"@babel/plugin-transform-new-target@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888"
- integrity sha1-kJfXU8t7Aky3OBo7LlLpUTqcaIg=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-object-super@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894"
- integrity sha1-1xRsTROUM+emUm+IjGZ+MUoJOJQ=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-replace-supers" "^7.10.4"
-
-"@babel/plugin-transform-parameters@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a"
- integrity sha1-WdM51Y0LGVBDX0BD504lEABeLEo=
- dependencies:
- "@babel/helper-get-function-arity" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-property-literals@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0"
- integrity sha1-9v5UtlkDUimHhbg+3YFdIUxC48A=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-react-display-name@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d"
- integrity sha1-tXlfTj4xQEGcNhG3oqODK5rvMo0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-react-jsx-development@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.10.4.tgz#6ec90f244394604623880e15ebc3c34c356258ba"
- integrity sha1-bskPJEOUYEYjiA4V68PDTDViWLo=
- dependencies:
- "@babel/helper-builder-react-jsx-experimental" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-jsx" "^7.10.4"
-
-"@babel/plugin-transform-react-jsx-self@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369"
- integrity sha1-zTAaX+2JiMGC7QudVem9bbC9k2k=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-jsx" "^7.10.4"
-
-"@babel/plugin-transform-react-jsx-source@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4"
- integrity sha1-NPF3kRdSCnecBU8s3ZaAQ1uSIrQ=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-jsx" "^7.10.4"
-
-"@babel/plugin-transform-react-jsx@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2"
- integrity sha1-ZzyfkTlIdkpEIWg7K+8pNpaP3fI=
- dependencies:
- "@babel/helper-builder-react-jsx" "^7.10.4"
- "@babel/helper-builder-react-jsx-experimental" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-syntax-jsx" "^7.10.4"
-
-"@babel/plugin-transform-react-pure-annotations@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501"
- integrity sha1-Pu+7c9uUr7wHXwl1I+RFNUocZQE=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-regenerator@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63"
- integrity sha1-IBXlnYOQdOdoON4hWdtCGWb9i2M=
- dependencies:
- regenerator-transform "^0.14.2"
-
-"@babel/plugin-transform-reserved-words@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd"
- integrity sha1-jyaCvNzvntMn4bCGFYXXAT+KVN0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-shorthand-properties@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6"
- integrity sha1-n9Jexc3VVbt/Rz5ebuHJce7eTdY=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-spread@^7.11.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc"
- integrity sha1-+oTTAPXk9XdS/kGm0bPFVPE/F8w=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0"
-
-"@babel/plugin-transform-sticky-regex@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d"
- integrity sha1-jziJ7oZXWBEwop2cyR18c7fEoo0=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/helper-regex" "^7.10.4"
-
-"@babel/plugin-transform-template-literals@^7.10.4":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c"
- integrity sha1-eLxdYmpmQtszEtnQ8AH152Of3ow=
- dependencies:
- "@babel/helper-annotate-as-pure" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-typeof-symbol@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc"
- integrity sha1-lQnxp+7DHE7b/+E3wWzDP/C8W/w=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-unicode-escapes@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007"
- integrity sha1-/q5SM5HHZR3awRXa4KnQaFeJIAc=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/plugin-transform-unicode-regex@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8"
- integrity sha1-5W1x+SgvrG2wnIJ0IFVXbV5tgKg=
- dependencies:
- "@babel/helper-create-regexp-features-plugin" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
-
-"@babel/polyfill@^7.8.7":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/polyfill/-/polyfill-7.10.4.tgz#915e5bfe61490ac0199008e35ca9d7d151a8e45a"
- integrity sha1-kV5b/mFJCsAZkAjjXKnX0VGo5Fo=
- dependencies:
- core-js "^2.6.5"
- regenerator-runtime "^0.13.4"
-
-"@babel/preset-env@^7.9.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/preset-env/-/preset-env-7.11.0.tgz#860ee38f2ce17ad60480c2021ba9689393efb796"
- integrity sha1-hg7jjyzhetYEgMICG6lok5Pvt5Y=
- dependencies:
- "@babel/compat-data" "^7.11.0"
- "@babel/helper-compilation-targets" "^7.10.4"
- "@babel/helper-module-imports" "^7.10.4"
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-proposal-async-generator-functions" "^7.10.4"
- "@babel/plugin-proposal-class-properties" "^7.10.4"
- "@babel/plugin-proposal-dynamic-import" "^7.10.4"
- "@babel/plugin-proposal-export-namespace-from" "^7.10.4"
- "@babel/plugin-proposal-json-strings" "^7.10.4"
- "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0"
- "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4"
- "@babel/plugin-proposal-numeric-separator" "^7.10.4"
- "@babel/plugin-proposal-object-rest-spread" "^7.11.0"
- "@babel/plugin-proposal-optional-catch-binding" "^7.10.4"
- "@babel/plugin-proposal-optional-chaining" "^7.11.0"
- "@babel/plugin-proposal-private-methods" "^7.10.4"
- "@babel/plugin-proposal-unicode-property-regex" "^7.10.4"
- "@babel/plugin-syntax-async-generators" "^7.8.0"
- "@babel/plugin-syntax-class-properties" "^7.10.4"
- "@babel/plugin-syntax-dynamic-import" "^7.8.0"
- "@babel/plugin-syntax-export-namespace-from" "^7.8.3"
- "@babel/plugin-syntax-json-strings" "^7.8.0"
- "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4"
- "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0"
- "@babel/plugin-syntax-numeric-separator" "^7.10.4"
- "@babel/plugin-syntax-object-rest-spread" "^7.8.0"
- "@babel/plugin-syntax-optional-catch-binding" "^7.8.0"
- "@babel/plugin-syntax-optional-chaining" "^7.8.0"
- "@babel/plugin-syntax-top-level-await" "^7.10.4"
- "@babel/plugin-transform-arrow-functions" "^7.10.4"
- "@babel/plugin-transform-async-to-generator" "^7.10.4"
- "@babel/plugin-transform-block-scoped-functions" "^7.10.4"
- "@babel/plugin-transform-block-scoping" "^7.10.4"
- "@babel/plugin-transform-classes" "^7.10.4"
- "@babel/plugin-transform-computed-properties" "^7.10.4"
- "@babel/plugin-transform-destructuring" "^7.10.4"
- "@babel/plugin-transform-dotall-regex" "^7.10.4"
- "@babel/plugin-transform-duplicate-keys" "^7.10.4"
- "@babel/plugin-transform-exponentiation-operator" "^7.10.4"
- "@babel/plugin-transform-for-of" "^7.10.4"
- "@babel/plugin-transform-function-name" "^7.10.4"
- "@babel/plugin-transform-literals" "^7.10.4"
- "@babel/plugin-transform-member-expression-literals" "^7.10.4"
- "@babel/plugin-transform-modules-amd" "^7.10.4"
- "@babel/plugin-transform-modules-commonjs" "^7.10.4"
- "@babel/plugin-transform-modules-systemjs" "^7.10.4"
- "@babel/plugin-transform-modules-umd" "^7.10.4"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4"
- "@babel/plugin-transform-new-target" "^7.10.4"
- "@babel/plugin-transform-object-super" "^7.10.4"
- "@babel/plugin-transform-parameters" "^7.10.4"
- "@babel/plugin-transform-property-literals" "^7.10.4"
- "@babel/plugin-transform-regenerator" "^7.10.4"
- "@babel/plugin-transform-reserved-words" "^7.10.4"
- "@babel/plugin-transform-shorthand-properties" "^7.10.4"
- "@babel/plugin-transform-spread" "^7.11.0"
- "@babel/plugin-transform-sticky-regex" "^7.10.4"
- "@babel/plugin-transform-template-literals" "^7.10.4"
- "@babel/plugin-transform-typeof-symbol" "^7.10.4"
- "@babel/plugin-transform-unicode-escapes" "^7.10.4"
- "@babel/plugin-transform-unicode-regex" "^7.10.4"
- "@babel/preset-modules" "^0.1.3"
- "@babel/types" "^7.11.0"
- browserslist "^4.12.0"
- core-js-compat "^3.6.2"
- invariant "^2.2.2"
- levenary "^1.1.1"
- semver "^5.5.0"
-
-"@babel/preset-modules@^0.1.3":
- version "0.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72"
- integrity sha1-EyQrU7XvjIg8PPfd3VWzbOgPvHI=
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
- "@babel/plugin-transform-dotall-regex" "^7.4.4"
- "@babel/types" "^7.4.4"
- esutils "^2.0.2"
-
-"@babel/preset-react@^7.9.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf"
- integrity sha1-kuimbYFvmRHRHUzJNb5nrfyC288=
- dependencies:
- "@babel/helper-plugin-utils" "^7.10.4"
- "@babel/plugin-transform-react-display-name" "^7.10.4"
- "@babel/plugin-transform-react-jsx" "^7.10.4"
- "@babel/plugin-transform-react-jsx-development" "^7.10.4"
- "@babel/plugin-transform-react-jsx-self" "^7.10.4"
- "@babel/plugin-transform-react-jsx-source" "^7.10.4"
- "@babel/plugin-transform-react-pure-annotations" "^7.10.4"
-
-"@babel/register@^7.9.0":
- version "7.10.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/register/-/register-7.10.5.tgz#354f3574895f1307f79efe37a51525e52fd38d89"
- integrity sha1-NU81dIlfEwf3nv43pRUl5S/TjYk=
- dependencies:
- find-cache-dir "^2.0.0"
- lodash "^4.17.19"
- make-dir "^2.1.0"
- pirates "^4.0.0"
- source-map-support "^0.5.16"
-
-"@babel/runtime@^7.8.4":
- version "7.11.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736"
- integrity sha1-9UnBPHVMxAuHZEufqfCaapX+BzY=
- dependencies:
- regenerator-runtime "^0.13.4"
-
-"@babel/template@^7.10.4":
- version "7.10.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/template/-/template-7.10.4.tgz#3251996c4200ebc71d1a8fc405fba940f36ba278"
- integrity sha1-MlGZbEIA68cdGo/EBfupQPNrong=
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/parser" "^7.10.4"
- "@babel/types" "^7.10.4"
-
-"@babel/traverse@^7.10.4", "@babel/traverse@^7.11.0", "@babel/traverse@^7.9.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/traverse/-/traverse-7.11.0.tgz#9b996ce1b98f53f7c3e4175115605d56ed07dd24"
- integrity sha1-m5ls4bmPU/fD5BdRFWBdVu0H3SQ=
- dependencies:
- "@babel/code-frame" "^7.10.4"
- "@babel/generator" "^7.11.0"
- "@babel/helper-function-name" "^7.10.4"
- "@babel/helper-split-export-declaration" "^7.11.0"
- "@babel/parser" "^7.11.0"
- "@babel/types" "^7.11.0"
- debug "^4.1.0"
- globals "^11.1.0"
- lodash "^4.17.19"
-
-"@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.4.4", "@babel/types@^7.9.0":
- version "7.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@babel/types/-/types-7.11.0.tgz#2ae6bf1ba9ae8c3c43824e5861269871b206e90d"
- integrity sha1-Kua/G6mujDxDgk5YYSaYcbIG6Q0=
- dependencies:
- "@babel/helper-validator-identifier" "^7.10.4"
- lodash "^4.17.19"
- to-fast-properties "^2.0.0"
-
-"@mrmlnc/readdir-enhanced@^2.2.1":
- version "2.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
- integrity sha1-UkryQNGjYFJ7cwR17PoTRKpUDd4=
- dependencies:
- call-me-maybe "^1.0.1"
- glob-to-regexp "^0.3.0"
-
-"@nodelib/fs.stat@^1.1.2":
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz#2b5a3ab3f918cca48a8c754c08168e3f03eba61b"
- integrity sha1-K1o6s/kYzKSKjHVMCBaOPwPrphs=
-
-"@sindresorhus/is@^0.7.0":
- version "0.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
- integrity sha1-mgb08TfuhNffBGDB/bETX/psUP0=
-
-"@types/cheerio@^0.22.8":
- version "0.22.21"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@types/cheerio/-/cheerio-0.22.21.tgz#5e37887de309ba11b2e19a6e14cad7874b31a8a3"
- integrity sha1-XjeIfeMJuhGy4ZpuFMrXh0sxqKM=
- dependencies:
- "@types/node" "*"
-
-"@types/color-name@^1.1.1":
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0"
- integrity sha1-HBJhu+qhCoBVu8XYq4S3sq/IRqA=
-
-"@types/node@*":
- version "14.0.27"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@types/node/-/node-14.0.27.tgz#a151873af5a5e851b51b3b065c9e63390a9e0eb1"
- integrity sha1-oVGHOvWl6FG1GzsGXJ5jOQqeDrE=
-
-"@types/q@^1.5.1":
- version "1.5.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/@types/q/-/q-1.5.4.tgz#15925414e0ad2cd765bfef58842f7e26a7accb24"
- integrity sha1-FZJUFOCtLNdlv+9YhC9+JqesyyQ=
-
-accepts@~1.3.7:
- version "1.3.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
- integrity sha1-UxvHJlF6OytB+FACHGzBXqq1B80=
- dependencies:
- mime-types "~2.1.24"
- negotiator "0.6.2"
-
-address@1.1.2, address@^1.0.1:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/address/-/address-1.1.2.tgz#bf1116c9c758c51b7a933d296b72c221ed9428b6"
- integrity sha1-vxEWycdYxRt6kz0pa3LCIe2UKLY=
-
-ajv@^6.12.3:
- version "6.12.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ajv/-/ajv-6.12.3.tgz#18c5af38a111ddeb4f2697bd78d68abc1cabd706"
- integrity sha1-GMWvOKER3etPJpe9eNaKvByr1wY=
- dependencies:
- fast-deep-equal "^3.1.1"
- fast-json-stable-stringify "^2.0.0"
- json-schema-traverse "^0.4.1"
- uri-js "^4.2.2"
-
-alphanum-sort@^1.0.0:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/alphanum-sort/-/alphanum-sort-1.0.2.tgz#97a1119649b211ad33691d9f9f486a8ec9fbe0a3"
- integrity sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=
-
-ansi-escapes@^3.2.0:
- version "3.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
- integrity sha1-h4C5j/nb9WOBUtHx/lwde0RCl2s=
-
-ansi-red@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-red/-/ansi-red-0.1.1.tgz#8c638f9d1080800a353c9c28c8a81ca4705d946c"
- integrity sha1-jGOPnRCAgAo1PJwoyKgcpHBdlGw=
- dependencies:
- ansi-wrap "0.1.0"
-
-ansi-regex@^2.0.0:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
- integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8=
-
-ansi-regex@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
- integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
-
-ansi-regex@^4.1.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-regex/-/ansi-regex-4.1.0.tgz#8b9f8f08cf1acb843756a839ca8c7e3168c51997"
- integrity sha1-i5+PCM8ay4Q3Vqg5yox+MWjFGZc=
-
-ansi-styles@^2.2.1:
- version "2.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
- integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
-
-ansi-styles@^3.2.1:
- version "3.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
- integrity sha1-QfuyAkPlCxK+DwS43tvwdSDOhB0=
- dependencies:
- color-convert "^1.9.0"
-
-ansi-styles@^4.1.0:
- version "4.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359"
- integrity sha1-kK51xCTQCNJiTFvynq0xd+v881k=
- dependencies:
- "@types/color-name" "^1.1.1"
- color-convert "^2.0.1"
-
-ansi-wrap@0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ansi-wrap/-/ansi-wrap-0.1.0.tgz#a82250ddb0015e9a27ca82e82ea603bbfa45efaf"
- integrity sha1-qCJQ3bABXponyoLoLqYDu/pF768=
-
-anymatch@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/anymatch/-/anymatch-2.0.0.tgz#bcb24b4f37934d9aa7ac17b4adaf89e7c76ef2eb"
- integrity sha1-vLJLTzeTTZqnrBe0ra+J58du8us=
- dependencies:
- micromatch "^3.1.4"
- normalize-path "^2.1.1"
-
-arch@^2.1.0:
- version "2.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/arch/-/arch-2.1.2.tgz#0c52bbe7344bb4fa260c443d2cbad9c00ff2f0bf"
- integrity sha1-DFK75zRLtPomDEQ9LLrZwA/y8L8=
-
-archive-type@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/archive-type/-/archive-type-4.0.0.tgz#f92e72233056dfc6969472749c267bdb046b1d70"
- integrity sha1-+S5yIzBW38aWlHJ0nCZ72wRrHXA=
- dependencies:
- file-type "^4.2.0"
-
-argparse@^1.0.10, argparse@^1.0.7:
- version "1.0.10"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
- integrity sha1-vNZ5HqWuCXJeF+WtmIE0zUCz2RE=
- dependencies:
- sprintf-js "~1.0.2"
-
-arr-diff@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/arr-diff/-/arr-diff-4.0.0.tgz#d6461074febfec71e7e15235761a329a5dc7c520"
- integrity sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=
-
-arr-flatten@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/arr-flatten/-/arr-flatten-1.1.0.tgz#36048bbff4e7b47e136644316c99669ea5ae91f1"
- integrity sha1-NgSLv/TntH4TZkQxbJlmnqWukfE=
-
-arr-union@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
- integrity sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=
-
-array-find-index@^1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/array-find-index/-/array-find-index-1.0.2.tgz#df010aa1287e164bbda6f9723b0a96a1ec4187a1"
- integrity sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=
-
-array-flatten@1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2"
- integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=
-
-array-union@^1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/array-union/-/array-union-1.0.2.tgz#9a34410e4f4e3da23dea375be5be70f24778ec39"
- integrity sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=
- dependencies:
- array-uniq "^1.0.1"
-
-array-uniq@^1.0.1:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/array-uniq/-/array-uniq-1.0.3.tgz#af6ac877a25cc7f74e058894753858dfdb24fdb6"
- integrity sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=
-
-array-unique@^0.3.2:
- version "0.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/array-unique/-/array-unique-0.3.2.tgz#a894b75d4bc4f6cd679ef3244a9fd8f46ae2d428"
- integrity sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=
-
-arrify@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/arrify/-/arrify-1.0.1.tgz#898508da2226f380df904728456849c1501a4b0d"
- integrity sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=
-
-asn1@~0.2.3:
- version "0.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/asn1/-/asn1-0.2.4.tgz#8d2475dfab553bb33e77b54e59e880bb8ce23136"
- integrity sha1-jSR136tVO7M+d7VOWeiAu4ziMTY=
- dependencies:
- safer-buffer "~2.1.0"
-
-assert-plus@1.0.0, assert-plus@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
- integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
-
-assign-symbols@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/assign-symbols/-/assign-symbols-1.0.0.tgz#59667f41fadd4f20ccbc2bb96b8d4f7f78ec0367"
- integrity sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=
-
-async-each@^1.0.1:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
- integrity sha1-tyfb+H12UWAvBvTUrDh/R9kbDL8=
-
-async@^2.6.2:
- version "2.6.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
- integrity sha1-1yYl4jRKNlbjo61Pp0n6gymdgv8=
- dependencies:
- lodash "^4.17.14"
-
-asynckit@^0.4.0:
- version "0.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79"
- integrity sha1-x57Zf380y48robyXkLzDZkdLS3k=
-
-atob@^2.1.2:
- version "2.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
- integrity sha1-bZUX654DDSQ2ZmZR6GvZ9vE1M8k=
-
-autolinker@^3.11.0:
- version "3.14.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/autolinker/-/autolinker-3.14.1.tgz#6ae4b812b6eaf42d4d68138b9e67757cbf2bc1e4"
- integrity sha1-auS4Erbq9C1NaBOLnmd1fL8rweQ=
- dependencies:
- tslib "^1.9.3"
-
-autolinker@~0.28.0:
- version "0.28.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/autolinker/-/autolinker-0.28.1.tgz#0652b491881879f0775dace0cdca3233942a4e47"
- integrity sha1-BlK0kYgYefB3XazgzcoyM5QqTkc=
- dependencies:
- gulp-header "^1.7.1"
-
-autoprefixer@^9.7.5:
- version "9.8.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f"
- integrity sha1-O3NZTKG/kmYyDFrPFYjXTep0IQ8=
- dependencies:
- browserslist "^4.12.0"
- caniuse-lite "^1.0.30001109"
- colorette "^1.2.1"
- normalize-range "^0.1.2"
- num2fraction "^1.2.2"
- postcss "^7.0.32"
- postcss-value-parser "^4.1.0"
-
-aws-sign2@~0.7.0:
- version "0.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
- integrity sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=
-
-aws4@^1.8.0:
- version "1.10.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/aws4/-/aws4-1.10.0.tgz#a17b3a8ea811060e74d47d306122400ad4497ae2"
- integrity sha1-oXs6jqgRBg501H0wYSJACtRJeuI=
-
-babel-code-frame@^6.22.0:
- version "6.26.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b"
- integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=
- dependencies:
- chalk "^1.1.3"
- esutils "^2.0.2"
- js-tokens "^3.0.2"
-
-babel-plugin-dynamic-import-node@^2.3.3:
- version "2.3.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
- integrity sha1-hP2hnJduxcbe/vV/lCez3vZuF6M=
- dependencies:
- object.assign "^4.1.0"
-
-babylon@^6.18.0:
- version "6.18.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
- integrity sha1-ry87iPpvXB5MY00aD46sT1WzleM=
-
-balanced-match@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
- integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
-
-base64-js@^1.0.2:
- version "1.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/base64-js/-/base64-js-1.3.1.tgz#58ece8cb75dd07e71ed08c736abc5fac4dbf8df1"
- integrity sha1-WOzoy3XdB+ce0IxzarxfrE2/jfE=
-
-base@^0.11.1:
- version "0.11.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f"
- integrity sha1-e95c7RRbbVUakNuH+DxVi060io8=
- dependencies:
- cache-base "^1.0.1"
- class-utils "^0.3.5"
- component-emitter "^1.2.1"
- define-property "^1.0.0"
- isobject "^3.0.1"
- mixin-deep "^1.2.0"
- pascalcase "^0.1.1"
-
-bcrypt-pbkdf@^1.0.0:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz#a4301d389b6a43f9b67ff3ca11a3f6637e360e9e"
- integrity sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=
- dependencies:
- tweetnacl "^0.14.3"
-
-big.js@^5.2.2:
- version "5.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/big.js/-/big.js-5.2.2.tgz#65f0af382f578bcdc742bd9c281e9cb2d7768328"
- integrity sha1-ZfCvOC9Xi83HQr2cKB6cstd2gyg=
-
-bin-build@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bin-build/-/bin-build-3.0.0.tgz#c5780a25a8a9f966d8244217e6c1f5082a143861"
- integrity sha1-xXgKJaip+WbYJEIX5sH1CCoUOGE=
- dependencies:
- decompress "^4.0.0"
- download "^6.2.2"
- execa "^0.7.0"
- p-map-series "^1.0.0"
- tempfile "^2.0.0"
-
-bin-check@^4.1.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bin-check/-/bin-check-4.1.0.tgz#fc495970bdc88bb1d5a35fc17e65c4a149fc4a49"
- integrity sha1-/ElZcL3Ii7HVo1/BfmXEoUn8Skk=
- dependencies:
- execa "^0.7.0"
- executable "^4.1.0"
-
-bin-version-check@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bin-version-check/-/bin-version-check-4.0.0.tgz#7d819c62496991f80d893e6e02a3032361608f71"
- integrity sha1-fYGcYklpkfgNiT5uAqMDI2Fgj3E=
- dependencies:
- bin-version "^3.0.0"
- semver "^5.6.0"
- semver-truncate "^1.1.2"
-
-bin-version@^3.0.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bin-version/-/bin-version-3.1.0.tgz#5b09eb280752b1bd28f0c9db3f96f2f43b6c0839"
- integrity sha1-WwnrKAdSsb0o8MnbP5by9DtsCDk=
- dependencies:
- execa "^1.0.0"
- find-versions "^3.0.0"
-
-bin-wrapper@^4.0.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bin-wrapper/-/bin-wrapper-4.1.0.tgz#99348f2cf85031e3ef7efce7e5300aeaae960605"
- integrity sha1-mTSPLPhQMePvfvzn5TAK6q6WBgU=
- dependencies:
- bin-check "^4.1.0"
- bin-version-check "^4.0.0"
- download "^7.1.0"
- import-lazy "^3.1.0"
- os-filter-obj "^2.0.0"
- pify "^4.0.1"
-
-binary-extensions@^1.0.0:
- version "1.13.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/binary-extensions/-/binary-extensions-1.13.1.tgz#598afe54755b2868a5330d2aff9d4ebb53209b65"
- integrity sha1-WYr+VHVbKGilMw0q/51Ou1Mgm2U=
-
-bindings@^1.5.0:
- version "1.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bindings/-/bindings-1.5.0.tgz#10353c9e945334bc0511a6d90b38fbc7c9c504df"
- integrity sha1-EDU8npRTNLwFEabZCzj7x8nFBN8=
- dependencies:
- file-uri-to-path "1.0.0"
-
-bl@^1.0.0:
- version "1.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bl/-/bl-1.2.2.tgz#a160911717103c07410cef63ef51b397c025af9c"
- integrity sha1-oWCRFxcQPAdBDO9j71Gzl8Alr5w=
- dependencies:
- readable-stream "^2.3.5"
- safe-buffer "^5.1.1"
-
-body-parser@1.19.0:
- version "1.19.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
- integrity sha1-lrJwnlfJxOCab9Zqj9l5hE9p8Io=
- dependencies:
- bytes "3.1.0"
- content-type "~1.0.4"
- debug "2.6.9"
- depd "~1.1.2"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- on-finished "~2.3.0"
- qs "6.7.0"
- raw-body "2.4.0"
- type-is "~1.6.17"
-
-body@^5.1.0:
- version "5.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069"
- integrity sha1-5LoM5BCkaTYyM2dgnstOZVMSUGk=
- dependencies:
- continuable-cache "^0.3.1"
- error "^7.0.0"
- raw-body "~1.1.0"
- safe-json-parse "~1.0.1"
-
-boolbase@^1.0.0, boolbase@~1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
- integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
-
-brace-expansion@^1.1.7:
- version "1.1.11"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd"
- integrity sha1-PH/L9SnYcibz0vUrlm/1Jx60Qd0=
- dependencies:
- balanced-match "^1.0.0"
- concat-map "0.0.1"
-
-braces@^2.3.1, braces@^2.3.2:
- version "2.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/braces/-/braces-2.3.2.tgz#5979fd3f14cd531565e5fa2df1abfff1dfaee729"
- integrity sha1-WXn9PxTNUxVl5fot8av/8d+u5yk=
- dependencies:
- arr-flatten "^1.1.0"
- array-unique "^0.3.2"
- extend-shallow "^2.0.1"
- fill-range "^4.0.0"
- isobject "^3.0.1"
- repeat-element "^1.1.2"
- snapdragon "^0.8.1"
- snapdragon-node "^2.0.1"
- split-string "^3.0.2"
- to-regex "^3.0.1"
-
-browserslist@4.7.0:
- version "4.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/browserslist/-/browserslist-4.7.0.tgz#9ee89225ffc07db03409f2fee524dc8227458a17"
- integrity sha1-nuiSJf/AfbA0CfL+5STcgidFihc=
- dependencies:
- caniuse-lite "^1.0.30000989"
- electron-to-chromium "^1.3.247"
- node-releases "^1.1.29"
-
-browserslist@^4.0.0, browserslist@^4.12.0, browserslist@^4.8.5:
- version "4.14.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/browserslist/-/browserslist-4.14.0.tgz#2908951abfe4ec98737b72f34c3bcedc8d43b000"
- integrity sha1-KQiVGr/k7Jhze3LzTDvO3I1DsAA=
- dependencies:
- caniuse-lite "^1.0.30001111"
- electron-to-chromium "^1.3.523"
- escalade "^3.0.2"
- node-releases "^1.1.60"
-
-buffer-alloc-unsafe@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz#bd7dc26ae2972d0eda253be061dba992349c19f0"
- integrity sha1-vX3CauKXLQ7aJTvgYdupkjScGfA=
-
-buffer-alloc@^1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer-alloc/-/buffer-alloc-1.2.0.tgz#890dd90d923a873e08e10e5fd51a57e5b7cce0ec"
- integrity sha1-iQ3ZDZI6hz4I4Q5f1RpX5bfM4Ow=
- dependencies:
- buffer-alloc-unsafe "^1.1.0"
- buffer-fill "^1.0.0"
-
-buffer-crc32@~0.2.3:
- version "0.2.13"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242"
- integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=
-
-buffer-fill@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer-fill/-/buffer-fill-1.0.0.tgz#f8f78b76789888ef39f205cd637f68e702122b2c"
- integrity sha1-+PeLdniYiO858gXNY39o5wISKyw=
-
-buffer-from@^1.0.0:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
- integrity sha1-MnE7wCj3XAL9txDXx7zsHyxgcO8=
-
-buffer@^5.2.1:
- version "5.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
- integrity sha1-oxdJ3H2B2E2wir+Te2uMQDP2J4Y=
- dependencies:
- base64-js "^1.0.2"
- ieee754 "^1.1.4"
-
-bytes@1:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bytes/-/bytes-1.0.0.tgz#3569ede8ba34315fab99c3e92cb04c7220de1fa8"
- integrity sha1-NWnt6Lo0MV+rmcPpLLBMciDeH6g=
-
-bytes@3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
- integrity sha1-9s95M6Ng4FiPqf3oVlHNx/gF0fY=
-
-cache-base@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cache-base/-/cache-base-1.0.1.tgz#0a7f46416831c8b662ee36fe4e7c59d76f666ab2"
- integrity sha1-Cn9GQWgxyLZi7jb+TnxZ129marI=
- dependencies:
- collection-visit "^1.0.0"
- component-emitter "^1.2.1"
- get-value "^2.0.6"
- has-value "^1.0.0"
- isobject "^3.0.1"
- set-value "^2.0.0"
- to-object-path "^0.3.0"
- union-value "^1.0.0"
- unset-value "^1.0.0"
-
-cacheable-request@^2.1.1:
- version "2.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d"
- integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=
- dependencies:
- clone-response "1.0.2"
- get-stream "3.0.0"
- http-cache-semantics "3.8.1"
- keyv "3.0.0"
- lowercase-keys "1.0.0"
- normalize-url "2.0.1"
- responselike "1.0.2"
-
-call-me-maybe@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
- integrity sha1-JtII6onje1y95gJQoV8DHBak1ms=
-
-caller-callsite@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caller-callsite/-/caller-callsite-2.0.0.tgz#847e0fce0a223750a9a027c54b33731ad3154134"
- integrity sha1-hH4PzgoiN1CpoCfFSzNzGtMVQTQ=
- dependencies:
- callsites "^2.0.0"
-
-caller-path@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caller-path/-/caller-path-2.0.0.tgz#468f83044e369ab2010fac5f06ceee15bb2cb1f4"
- integrity sha1-Ro+DBE42mrIBD6xfBs7uFbsssfQ=
- dependencies:
- caller-callsite "^2.0.0"
-
-callsites@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/callsites/-/callsites-2.0.0.tgz#06eb84f00eea413da86affefacbffb36093b3c50"
- integrity sha1-BuuE8A7qQT2oav/vrL/7Ngk7PFA=
-
-camelcase-keys@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/camelcase-keys/-/camelcase-keys-2.1.0.tgz#308beeaffdf28119051efa1d932213c91b8f92e7"
- integrity sha1-MIvur/3ygRkFHvodkyITyRuPkuc=
- dependencies:
- camelcase "^2.0.0"
- map-obj "^1.0.0"
-
-camelcase@^2.0.0:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/camelcase/-/camelcase-2.1.1.tgz#7c1d16d679a1bbe59ca02cacecfb011e201f5a1f"
- integrity sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=
-
-caniuse-api@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0"
- integrity sha1-Xk2Q4idJYdRikZl99Znj7QCO5MA=
- dependencies:
- browserslist "^4.0.0"
- caniuse-lite "^1.0.0"
- lodash.memoize "^4.1.2"
- lodash.uniq "^4.5.0"
-
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000989, caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001111:
- version "1.0.30001113"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caniuse-lite/-/caniuse-lite-1.0.30001113.tgz#22016ab55b5a8b04fa00ca342d9ee1b98df48065"
- integrity sha1-IgFqtVtaiwT6AMo0LZ7huY30gGU=
-
-caseless@~0.12.0:
- version "0.12.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caseless/-/caseless-0.12.0.tgz#1b681c21ff84033c826543090689420d187151dc"
- integrity sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=
-
-caw@^2.0.0, caw@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/caw/-/caw-2.0.1.tgz#6c3ca071fc194720883c2dc5da9b074bfc7e9e95"
- integrity sha1-bDygcfwZRyCIPC3F2psHS/x+npU=
- dependencies:
- get-proxy "^2.0.0"
- isurl "^1.0.0-alpha5"
- tunnel-agent "^0.6.0"
- url-to-options "^1.0.1"
-
-chalk@2.4.2, chalk@^2.0.0, chalk@^2.4.1, chalk@^2.4.2:
- version "2.4.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
- integrity sha1-zUJUFnelQzPPVBpJEIwUMrRMlCQ=
- dependencies:
- ansi-styles "^3.2.1"
- escape-string-regexp "^1.0.5"
- supports-color "^5.3.0"
-
-chalk@^1.0.0, chalk@^1.1.3:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
- integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
- dependencies:
- ansi-styles "^2.2.1"
- escape-string-regexp "^1.0.2"
- has-ansi "^2.0.0"
- strip-ansi "^3.0.0"
- supports-color "^2.0.0"
-
-chalk@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4"
- integrity sha1-P3PCv1JlkfV0zEksUeJFY0n4ROQ=
- dependencies:
- ansi-styles "^4.1.0"
- supports-color "^7.1.0"
-
-chardet@^0.7.0:
- version "0.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/chardet/-/chardet-0.7.0.tgz#90094849f0937f2eedc2425d0d28a9e5f0cbad9e"
- integrity sha1-kAlISfCTfy7twkJdDSip5fDLrZ4=
-
-cheerio@0.22.0:
- version "0.22.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cheerio/-/cheerio-0.22.0.tgz#a9baa860a3f9b595a6b81b1a86873121ed3a269e"
- integrity sha1-qbqoYKP5tZWmuBsahocxIe06Jp4=
- dependencies:
- css-select "~1.2.0"
- dom-serializer "~0.1.0"
- entities "~1.1.1"
- htmlparser2 "^3.9.1"
- lodash.assignin "^4.0.9"
- lodash.bind "^4.1.4"
- lodash.defaults "^4.0.1"
- lodash.filter "^4.4.0"
- lodash.flatten "^4.2.0"
- lodash.foreach "^4.3.0"
- lodash.map "^4.4.0"
- lodash.merge "^4.4.0"
- lodash.pick "^4.2.1"
- lodash.reduce "^4.4.0"
- lodash.reject "^4.4.0"
- lodash.some "^4.4.0"
-
-chokidar@^2.0.4:
- version "2.1.8"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917"
- integrity sha1-gEs6e2qZNYw8XGHnHYco8EHP+Rc=
- dependencies:
- anymatch "^2.0.0"
- async-each "^1.0.1"
- braces "^2.3.2"
- glob-parent "^3.1.0"
- inherits "^2.0.3"
- is-binary-path "^1.0.0"
- is-glob "^4.0.0"
- normalize-path "^3.0.0"
- path-is-absolute "^1.0.0"
- readdirp "^2.2.1"
- upath "^1.1.1"
- optionalDependencies:
- fsevents "^1.2.7"
-
-class-utils@^0.3.5:
- version "0.3.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/class-utils/-/class-utils-0.3.6.tgz#f93369ae8b9a7ce02fd41faad0ca83033190c463"
- integrity sha1-+TNprouafOAv1B+q0MqDAzGQxGM=
- dependencies:
- arr-union "^3.1.0"
- define-property "^0.2.5"
- isobject "^3.0.0"
- static-extend "^0.1.1"
-
-classnames@^2.2.6:
- version "2.2.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce"
- integrity sha1-Q5Nb/90pHzJtrQogUwmzjQD2UM4=
-
-cli-cursor@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
- integrity sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=
- dependencies:
- restore-cursor "^2.0.0"
-
-cli-width@^2.0.0:
- version "2.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cli-width/-/cli-width-2.2.1.tgz#b0433d0b4e9c847ef18868a4ef16fd5fc8271c48"
- integrity sha1-sEM9C06chH7xiGik7xb9X8gnHEg=
-
-clipboard@^2.0.0:
- version "2.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/clipboard/-/clipboard-2.0.6.tgz#52921296eec0fdf77ead1749421b21c968647376"
- integrity sha1-UpISlu7A/fd+rRdJQhshyWhkc3Y=
- dependencies:
- good-listener "^1.2.2"
- select "^1.1.2"
- tiny-emitter "^2.0.0"
-
-clone-response@1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
- integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
- dependencies:
- mimic-response "^1.0.0"
-
-coa@^2.0.2:
- version "2.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
- integrity sha1-Q/bCEVG07yv1cYfbDXPeIp4+fsM=
- dependencies:
- "@types/q" "^1.5.1"
- chalk "^2.4.1"
- q "^1.1.2"
-
-coffee-script@^1.12.4:
- version "1.12.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/coffee-script/-/coffee-script-1.12.7.tgz#c05dae0cb79591d05b3070a8433a98c9a89ccc53"
- integrity sha1-wF2uDLeVkdBbMHCoQzqYyaiczFM=
-
-collection-visit@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/collection-visit/-/collection-visit-1.0.0.tgz#4bc0373c164bc3291b4d368c829cf1a80a59dca0"
- integrity sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=
- dependencies:
- map-visit "^1.0.0"
- object-visit "^1.0.0"
-
-color-convert@^1.9.0, color-convert@^1.9.1:
- version "1.9.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8"
- integrity sha1-u3GFBpDh8TZWfeYp0tVHHe2kweg=
- dependencies:
- color-name "1.1.3"
-
-color-convert@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3"
- integrity sha1-ctOmjVmMm9s68q0ehPIdiWq9TeM=
- dependencies:
- color-name "~1.1.4"
-
-color-name@1.1.3:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25"
- integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=
-
-color-name@^1.0.0, color-name@~1.1.4:
- version "1.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2"
- integrity sha1-wqCah6y95pVD3m9j+jmVyCbFNqI=
-
-color-string@^1.5.2:
- version "1.5.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color-string/-/color-string-1.5.3.tgz#c9bbc5f01b58b5492f3d6857459cb6590ce204cc"
- integrity sha1-ybvF8BtYtUkvPWhXRZy2WQziBMw=
- dependencies:
- color-name "^1.0.0"
- simple-swizzle "^0.2.2"
-
-color@^3.0.0:
- version "3.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/color/-/color-3.1.2.tgz#68148e7f85d41ad7649c5fa8c8106f098d229e10"
- integrity sha1-aBSOf4XUGtdknF+oyBBvCY0inhA=
- dependencies:
- color-convert "^1.9.1"
- color-string "^1.5.2"
-
-colorette@^1.2.1:
- version "1.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b"
- integrity sha1-TQuSEyXBT6+SYzCGpTbbbolWSxs=
-
-combined-stream@^1.0.6, combined-stream@~1.0.6:
- version "1.0.8"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f"
- integrity sha1-w9RaizT9cwYxoRCoolIGgrMdWn8=
- dependencies:
- delayed-stream "~1.0.0"
-
-commander@^2.8.1:
- version "2.20.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
- integrity sha1-/UhehMA+tIgcIHIrpIA16FMa6zM=
-
-commander@^4.0.1:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068"
- integrity sha1-n9YCvZNilOnp70aj9NaWQESxgGg=
-
-commander@^5.0.0:
- version "5.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/commander/-/commander-5.1.0.tgz#46abbd1652f8e059bddaef99bbdcb2ad9cf179ae"
- integrity sha1-Rqu9FlL44Fm92u+Zu9yyrZzxea4=
-
-commondir@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
- integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
-
-component-emitter@^1.2.1:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
- integrity sha1-FuQHD7qK4ptnnyIVhT7hgasuq8A=
-
-concat-map@0.0.1:
- version "0.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
- integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-
-concat-stream@^1.5.2:
- version "1.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
- integrity sha1-kEvfGUzTEi/Gdcd/xKw9T/D9GjQ=
- dependencies:
- buffer-from "^1.0.0"
- inherits "^2.0.3"
- readable-stream "^2.2.2"
- typedarray "^0.0.6"
-
-concat-with-sourcemaps@*:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e"
- integrity sha1-1OqT8FriV5CVG5nns7CeOQikCC4=
- dependencies:
- source-map "^0.6.1"
-
-config-chain@^1.1.11:
- version "1.1.12"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
- integrity sha1-D96NCRIA616AjK8l/mGMAvSOTvo=
- dependencies:
- ini "^1.3.4"
- proto-list "~1.2.1"
-
-console-stream@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/console-stream/-/console-stream-0.1.1.tgz#a095fe07b20465955f2fafd28b5d72bccd949d44"
- integrity sha1-oJX+B7IEZZVfL6/Si11yvM2UnUQ=
-
-content-disposition@0.5.3, content-disposition@^0.5.2:
- version "0.5.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
- integrity sha1-4TDK9+cnkIfFYWwgB9BIVpiYT70=
- dependencies:
- safe-buffer "5.1.2"
-
-content-type@~1.0.4:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
- integrity sha1-4TjMdeBAxyexlm/l5fjJruJW/js=
-
-continuable-cache@^0.3.1:
- version "0.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/continuable-cache/-/continuable-cache-0.3.1.tgz#bd727a7faed77e71ff3985ac93351a912733ad0f"
- integrity sha1-vXJ6f67XfnH/OYWskzUakSczrQ8=
-
-convert-source-map@^1.7.0:
- version "1.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442"
- integrity sha1-F6LLiC1/d9NJBYXizmxSRCSjpEI=
- dependencies:
- safe-buffer "~5.1.1"
-
-cookie-signature@1.0.6:
- version "1.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cookie-signature/-/cookie-signature-1.0.6.tgz#e303a882b342cc3ee8ca513a79999734dab3ae2c"
- integrity sha1-4wOogrNCzD7oylE6eZmXNNqzriw=
-
-cookie@0.4.0:
- version "0.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
- integrity sha1-vrQ35wIrO21JAZ0IhmUwPr6cFLo=
-
-copy-descriptor@^0.1.0:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
- integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-
-core-js-compat@^3.6.2:
- version "3.6.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c"
- integrity sha1-KlHZpOJd/W5pAlGqgfmePAVIHxw=
- dependencies:
- browserslist "^4.8.5"
- semver "7.0.0"
-
-core-js@^2.6.5:
- version "2.6.11"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c"
- integrity sha1-OIMUafmSK97Y7iHJ3EaYXgOZMIw=
-
-core-util-is@1.0.2, core-util-is@~1.0.0:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
- integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=
-
-cosmiconfig@^5.0.0:
- version "5.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
- integrity sha1-BA9yaAnFked6F8CjYmykW08Wixo=
- dependencies:
- import-fresh "^2.0.0"
- is-directory "^0.3.1"
- js-yaml "^3.13.1"
- parse-json "^4.0.0"
-
-cross-spawn@6.0.5, cross-spawn@^6.0.0:
- version "6.0.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cross-spawn/-/cross-spawn-6.0.5.tgz#4a5ec7c64dfae22c3a14124dbacdee846d80cbc4"
- integrity sha1-Sl7Hxk364iw6FBJNus3uhG2Ay8Q=
- dependencies:
- nice-try "^1.0.4"
- path-key "^2.0.1"
- semver "^5.5.0"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-cross-spawn@^5.0.1:
- version "5.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cross-spawn/-/cross-spawn-5.1.0.tgz#e8bd0efee58fcff6f8f94510a0a554bbfa235449"
- integrity sha1-6L0O/uWPz/b4+UUQoKVUu/ojVEk=
- dependencies:
- lru-cache "^4.0.1"
- shebang-command "^1.2.0"
- which "^1.2.9"
-
-crowdin-cli@^0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/crowdin-cli/-/crowdin-cli-0.3.0.tgz#eac9989a6fe7feaaf33090397afc187c67b46191"
- integrity sha1-6smYmm/n/qrzMJA5evwYfGe0YZE=
- dependencies:
- request "^2.53.0"
- yamljs "^0.2.1"
- yargs "^2.3.0"
-
-css-color-names@0.0.4, css-color-names@^0.0.4:
- version "0.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
- integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
-
-css-declaration-sorter@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-declaration-sorter/-/css-declaration-sorter-4.0.1.tgz#c198940f63a76d7e36c1e71018b001721054cb22"
- integrity sha1-wZiUD2OnbX42wecQGLABchBUyyI=
- dependencies:
- postcss "^7.0.1"
- timsort "^0.3.0"
-
-css-select-base-adapter@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
- integrity sha1-Oy/0lyzDYquIVhUHqVQIoUMhNdc=
-
-css-select@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-select/-/css-select-2.1.0.tgz#6a34653356635934a81baca68d0255432105dbef"
- integrity sha1-ajRlM1ZjWTSoG6ymjQJVQyEF2+8=
- dependencies:
- boolbase "^1.0.0"
- css-what "^3.2.1"
- domutils "^1.7.0"
- nth-check "^1.0.2"
-
-css-select@~1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858"
- integrity sha1-KzoRBTnFNV8c2NMUYj6HCxIeyFg=
- dependencies:
- boolbase "~1.0.0"
- css-what "2.1"
- domutils "1.5.1"
- nth-check "~1.0.1"
-
-css-tree@1.0.0-alpha.37:
- version "1.0.0-alpha.37"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-tree/-/css-tree-1.0.0-alpha.37.tgz#98bebd62c4c1d9f960ec340cf9f7522e30709a22"
- integrity sha1-mL69YsTB2flg7DQM+fdSLjBwmiI=
- dependencies:
- mdn-data "2.0.4"
- source-map "^0.6.1"
-
-css-tree@1.0.0-alpha.39:
- version "1.0.0-alpha.39"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-tree/-/css-tree-1.0.0-alpha.39.tgz#2bff3ffe1bb3f776cf7eefd91ee5cba77a149eeb"
- integrity sha1-K/8//huz93bPfu/ZHuXLp3oUnus=
- dependencies:
- mdn-data "2.0.6"
- source-map "^0.6.1"
-
-css-what@2.1:
- version "2.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
- integrity sha1-ptdgRXM2X+dGhsPzEcVlE9iChfI=
-
-css-what@^3.2.1:
- version "3.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/css-what/-/css-what-3.3.0.tgz#10fec696a9ece2e591ac772d759aacabac38cd39"
- integrity sha1-EP7Glqns4uWRrHctdZqsq6w4zTk=
-
-cssesc@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
- integrity sha1-N3QZGZA7hoVl4cCep0dEXNGJg+4=
-
-cssnano-preset-default@^4.0.7:
- version "4.0.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano-preset-default/-/cssnano-preset-default-4.0.7.tgz#51ec662ccfca0f88b396dcd9679cdb931be17f76"
- integrity sha1-UexmLM/KD4izltzZZ5zbkxvhf3Y=
- dependencies:
- css-declaration-sorter "^4.0.1"
- cssnano-util-raw-cache "^4.0.1"
- postcss "^7.0.0"
- postcss-calc "^7.0.1"
- postcss-colormin "^4.0.3"
- postcss-convert-values "^4.0.1"
- postcss-discard-comments "^4.0.2"
- postcss-discard-duplicates "^4.0.2"
- postcss-discard-empty "^4.0.1"
- postcss-discard-overridden "^4.0.1"
- postcss-merge-longhand "^4.0.11"
- postcss-merge-rules "^4.0.3"
- postcss-minify-font-values "^4.0.2"
- postcss-minify-gradients "^4.0.2"
- postcss-minify-params "^4.0.2"
- postcss-minify-selectors "^4.0.2"
- postcss-normalize-charset "^4.0.1"
- postcss-normalize-display-values "^4.0.2"
- postcss-normalize-positions "^4.0.2"
- postcss-normalize-repeat-style "^4.0.2"
- postcss-normalize-string "^4.0.2"
- postcss-normalize-timing-functions "^4.0.2"
- postcss-normalize-unicode "^4.0.1"
- postcss-normalize-url "^4.0.1"
- postcss-normalize-whitespace "^4.0.2"
- postcss-ordered-values "^4.1.2"
- postcss-reduce-initial "^4.0.3"
- postcss-reduce-transforms "^4.0.2"
- postcss-svgo "^4.0.2"
- postcss-unique-selectors "^4.0.1"
-
-cssnano-util-get-arguments@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz#ed3a08299f21d75741b20f3b81f194ed49cc150f"
- integrity sha1-7ToIKZ8h11dBsg87gfGU7UnMFQ8=
-
-cssnano-util-get-match@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano-util-get-match/-/cssnano-util-get-match-4.0.0.tgz#c0e4ca07f5386bb17ec5e52250b4f5961365156d"
- integrity sha1-wOTKB/U4a7F+xeUiULT1lhNlFW0=
-
-cssnano-util-raw-cache@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano-util-raw-cache/-/cssnano-util-raw-cache-4.0.1.tgz#b26d5fd5f72a11dfe7a7846fb4c67260f96bf282"
- integrity sha1-sm1f1fcqEd/np4RvtMZyYPlr8oI=
- dependencies:
- postcss "^7.0.0"
-
-cssnano-util-same-parent@^4.0.0:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz#574082fb2859d2db433855835d9a8456ea18bbf3"
- integrity sha1-V0CC+yhZ0ttDOFWDXZqEVuoYu/M=
-
-cssnano@^4.1.10:
- version "4.1.10"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/cssnano/-/cssnano-4.1.10.tgz#0ac41f0b13d13d465487e111b778d42da631b8b2"
- integrity sha1-CsQfCxPRPUZUh+ERt3jULaYxuLI=
- dependencies:
- cosmiconfig "^5.0.0"
- cssnano-preset-default "^4.0.7"
- is-resolvable "^1.0.0"
- postcss "^7.0.0"
-
-csso@^4.0.2:
- version "4.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/csso/-/csso-4.0.3.tgz#0d9985dc852c7cc2b2cacfbbe1079014d1a8e903"
- integrity sha1-DZmF3IUsfMKyys+74QeQFNGo6QM=
- dependencies:
- css-tree "1.0.0-alpha.39"
-
-currently-unhandled@^0.4.1:
- version "0.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
- integrity sha1-mI3zP+qxke95mmE2nddsF635V+o=
- dependencies:
- array-find-index "^1.0.1"
-
-dashdash@^1.12.0:
- version "1.14.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/dashdash/-/dashdash-1.14.1.tgz#853cfa0f7cbe2fed5de20326b8dd581035f6e2f0"
- integrity sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=
- dependencies:
- assert-plus "^1.0.0"
-
-debug@2.6.9, debug@^2.2.0, debug@^2.3.3, debug@^2.6.0:
- version "2.6.9"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
- integrity sha1-XRKFFd8TT/Mn6QpMk/Tgd6U2NB8=
- dependencies:
- ms "2.0.0"
-
-debug@4.1.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/debug/-/debug-4.1.0.tgz#373687bffa678b38b1cd91f861b63850035ddc87"
- integrity sha1-NzaHv/pnizixzZH4YbY4UANd3Ic=
- dependencies:
- ms "^2.1.1"
-
-debug@^3.1.0, debug@^3.1.1, debug@^3.2.5:
- version "3.2.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/debug/-/debug-3.2.6.tgz#e83d17de16d8a7efb7717edbe5fb10135eee629b"
- integrity sha1-6D0X3hbYp++3cX7b5fsQE17uYps=
- dependencies:
- ms "^2.1.1"
-
-debug@^4.1.0:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
- integrity sha1-O3ImAlUQnGtYnO4FDx1RYTlmR5E=
- dependencies:
- ms "^2.1.1"
-
-decamelize@^1.1.2:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decamelize/-/decamelize-1.2.0.tgz#f6534d15148269b20352e7bee26f501f9a191290"
- integrity sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=
-
-decode-uri-component@^0.2.0:
- version "0.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
- integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
-
-decompress-response@^3.2.0, decompress-response@^3.3.0:
- version "3.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
- integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
- dependencies:
- mimic-response "^1.0.0"
-
-decompress-tar@^4.0.0, decompress-tar@^4.1.0, decompress-tar@^4.1.1:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress-tar/-/decompress-tar-4.1.1.tgz#718cbd3fcb16209716e70a26b84e7ba4592e5af1"
- integrity sha1-cYy9P8sWIJcW5womuE57pFkuWvE=
- dependencies:
- file-type "^5.2.0"
- is-stream "^1.1.0"
- tar-stream "^1.5.2"
-
-decompress-tarbz2@^4.0.0:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz#3082a5b880ea4043816349f378b56c516be1a39b"
- integrity sha1-MIKluIDqQEOBY0nzeLVsUWvho5s=
- dependencies:
- decompress-tar "^4.1.0"
- file-type "^6.1.0"
- is-stream "^1.1.0"
- seek-bzip "^1.0.5"
- unbzip2-stream "^1.0.9"
-
-decompress-targz@^4.0.0:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress-targz/-/decompress-targz-4.1.1.tgz#c09bc35c4d11f3de09f2d2da53e9de23e7ce1eee"
- integrity sha1-wJvDXE0R894J8tLaU+neI+fOHu4=
- dependencies:
- decompress-tar "^4.1.1"
- file-type "^5.2.0"
- is-stream "^1.1.0"
-
-decompress-unzip@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress-unzip/-/decompress-unzip-4.0.1.tgz#deaaccdfd14aeaf85578f733ae8210f9b4848f69"
- integrity sha1-3qrM39FK6vhVePczroIQ+bSEj2k=
- dependencies:
- file-type "^3.8.0"
- get-stream "^2.2.0"
- pify "^2.3.0"
- yauzl "^2.4.2"
-
-decompress@^4.0.0, decompress@^4.2.0:
- version "4.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/decompress/-/decompress-4.2.1.tgz#007f55cc6a62c055afa37c07eb6a4ee1b773f118"
- integrity sha1-AH9VzGpiwFWvo3wH62pO4bdz8Rg=
- dependencies:
- decompress-tar "^4.0.0"
- decompress-tarbz2 "^4.0.0"
- decompress-targz "^4.0.0"
- decompress-unzip "^4.0.1"
- graceful-fs "^4.1.10"
- make-dir "^1.0.0"
- pify "^2.3.0"
- strip-dirs "^2.0.0"
-
-deep-is@^0.1.3:
- version "0.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
- integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
-
-define-properties@^1.1.2, define-properties@^1.1.3:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/define-properties/-/define-properties-1.1.3.tgz#cf88da6cbee26fe6db7094f61d870cbd84cee9f1"
- integrity sha1-z4jabL7ib+bbcJT2HYcMvYTO6fE=
- dependencies:
- object-keys "^1.0.12"
-
-define-property@^0.2.5:
- version "0.2.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
- integrity sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=
- dependencies:
- is-descriptor "^0.1.0"
-
-define-property@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/define-property/-/define-property-1.0.0.tgz#769ebaaf3f4a63aad3af9e8d304c9bbe79bfb0e6"
- integrity sha1-dp66rz9KY6rTr56NMEybvnm/sOY=
- dependencies:
- is-descriptor "^1.0.0"
-
-define-property@^2.0.2:
- version "2.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/define-property/-/define-property-2.0.2.tgz#d459689e8d654ba77e02a817f8710d702cb16e9d"
- integrity sha1-1Flono1lS6d+AqgX+HENcCyxbp0=
- dependencies:
- is-descriptor "^1.0.2"
- isobject "^3.0.1"
-
-delayed-stream@~1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
- integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
-
-delegate@^3.1.2:
- version "3.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
- integrity sha1-tmtxwxWFIuirV0T3INjKDCr1kWY=
-
-depd@~1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/depd/-/depd-1.1.2.tgz#9bcd52e14c097763e749b274c4346ed2e560b5a9"
- integrity sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=
-
-destroy@~1.0.4:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
- integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
-
-detect-port-alt@1.1.6:
- version "1.1.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/detect-port-alt/-/detect-port-alt-1.1.6.tgz#24707deabe932d4a3cf621302027c2b266568275"
- integrity sha1-JHB96r6TLUo89iEwICfCsmZWgnU=
- dependencies:
- address "^1.0.1"
- debug "^2.6.0"
-
-diacritics-map@^0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/diacritics-map/-/diacritics-map-0.1.0.tgz#6dfc0ff9d01000a2edf2865371cac316e94977af"
- integrity sha1-bfwP+dAQAKLt8oZTccrDFulJd68=
-
-dir-glob@2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/dir-glob/-/dir-glob-2.0.0.tgz#0b205d2b6aef98238ca286598a8204d29d0a0034"
- integrity sha1-CyBdK2rvmCOMooZZioIE0p0KADQ=
- dependencies:
- arrify "^1.0.1"
- path-type "^3.0.0"
-
-docusaurus@^1.14.4:
- version "1.14.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/docusaurus/-/docusaurus-1.14.6.tgz#ffab9f6dafe8c48c477e0ebc7f491e554143b2b5"
- integrity sha1-/6ufba/oxIxHfg68f0keVUFDsrU=
- dependencies:
- "@babel/core" "^7.9.0"
- "@babel/plugin-proposal-class-properties" "^7.8.3"
- "@babel/plugin-proposal-object-rest-spread" "^7.9.0"
- "@babel/polyfill" "^7.8.7"
- "@babel/preset-env" "^7.9.0"
- "@babel/preset-react" "^7.9.4"
- "@babel/register" "^7.9.0"
- "@babel/traverse" "^7.9.0"
- "@babel/types" "^7.9.0"
- autoprefixer "^9.7.5"
- babylon "^6.18.0"
- chalk "^3.0.0"
- classnames "^2.2.6"
- commander "^4.0.1"
- crowdin-cli "^0.3.0"
- cssnano "^4.1.10"
- escape-string-regexp "^2.0.0"
- express "^4.17.1"
- feed "^4.0.0"
- fs-extra "^8.1.0"
- gaze "^1.1.3"
- github-slugger "^1.2.1"
- glob "^7.1.6"
- highlight.js "^9.16.2"
- imagemin "^6.0.0"
- imagemin-gifsicle "^6.0.1"
- imagemin-jpegtran "^6.0.0"
- imagemin-optipng "^6.0.0"
- imagemin-svgo "^7.0.0"
- lodash "^4.17.15"
- markdown-toc "^1.2.0"
- mkdirp "^0.5.1"
- portfinder "^1.0.25"
- postcss "^7.0.23"
- prismjs "^1.17.1"
- react "^16.8.4"
- react-dev-utils "^9.1.0"
- react-dom "^16.8.4"
- remarkable "^2.0.0"
- request "^2.88.0"
- shelljs "^0.8.4"
- sitemap "^3.2.2"
- tcp-port-used "^1.0.1"
- tiny-lr "^1.1.1"
- tree-node-cli "^1.2.5"
- truncate-html "^1.0.3"
-
-dom-serializer@0:
- version "0.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51"
- integrity sha1-GvuB9TNxcXXUeGVd68XjMtn5u1E=
- dependencies:
- domelementtype "^2.0.1"
- entities "^2.0.0"
-
-dom-serializer@~0.1.0:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0"
- integrity sha1-HsQFnihLq+027sKUHUqXChic58A=
- dependencies:
- domelementtype "^1.3.0"
- entities "^1.1.1"
-
-domelementtype@1, domelementtype@^1.3.0, domelementtype@^1.3.1:
- version "1.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
- integrity sha1-0EjESzew0Qp/Kj1f7j9DM9eQSB8=
-
-domelementtype@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d"
- integrity sha1-H4vf6R9aeAYydOgDtL3O326U+U0=
-
-domhandler@^2.3.0:
- version "2.4.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/domhandler/-/domhandler-2.4.2.tgz#8805097e933d65e85546f726d60f5eb88b44f803"
- integrity sha1-iAUJfpM9ZehVRvcm1g9euItE+AM=
- dependencies:
- domelementtype "1"
-
-domutils@1.5.1:
- version "1.5.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
- integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=
- dependencies:
- dom-serializer "0"
- domelementtype "1"
-
-domutils@^1.5.1, domutils@^1.7.0:
- version "1.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
- integrity sha1-Vuo0HoNOBuZ0ivehyyXaZ+qfjCo=
- dependencies:
- dom-serializer "0"
- domelementtype "1"
-
-dot-prop@^5.2.0:
- version "5.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/dot-prop/-/dot-prop-5.2.0.tgz#c34ecc29556dc45f1f4c22697b6f4904e0cc4fcb"
- integrity sha1-w07MKVVtxF8fTCJpe29JBODMT8s=
- dependencies:
- is-obj "^2.0.0"
-
-download@^6.2.2:
- version "6.2.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/download/-/download-6.2.5.tgz#acd6a542e4cd0bb42ca70cfc98c9e43b07039714"
- integrity sha1-rNalQuTNC7Qspwz8mMnkOwcDlxQ=
- dependencies:
- caw "^2.0.0"
- content-disposition "^0.5.2"
- decompress "^4.0.0"
- ext-name "^5.0.0"
- file-type "5.2.0"
- filenamify "^2.0.0"
- get-stream "^3.0.0"
- got "^7.0.0"
- make-dir "^1.0.0"
- p-event "^1.0.0"
- pify "^3.0.0"
-
-download@^7.1.0:
- version "7.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/download/-/download-7.1.0.tgz#9059aa9d70b503ee76a132897be6dec8e5587233"
- integrity sha1-kFmqnXC1A+52oTKJe+beyOVYcjM=
- dependencies:
- archive-type "^4.0.0"
- caw "^2.0.1"
- content-disposition "^0.5.2"
- decompress "^4.2.0"
- ext-name "^5.0.0"
- file-type "^8.1.0"
- filenamify "^2.0.0"
- get-stream "^3.0.0"
- got "^8.3.1"
- make-dir "^1.2.0"
- p-event "^2.1.0"
- pify "^3.0.0"
-
-duplexer3@^0.1.4:
- version "0.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
- integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
-
-duplexer@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/duplexer/-/duplexer-0.1.1.tgz#ace6ff808c1ce66b57d1ebf97977acb02334cfc1"
- integrity sha1-rOb/gIwc5mtX0ev5eXessCM0z8E=
-
-ecc-jsbn@~0.1.1:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
- integrity sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=
- dependencies:
- jsbn "~0.1.0"
- safer-buffer "^2.1.0"
-
-ee-first@1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
- integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-
-electron-to-chromium@^1.3.247, electron-to-chromium@^1.3.523:
- version "1.3.529"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/electron-to-chromium/-/electron-to-chromium-1.3.529.tgz#a7eed559bc848a7c8d95026be7d8929e3f9af169"
- integrity sha1-p+7VWbyEinyNlQJr59iSnj+a8Wk=
-
-"emoji-regex@>=6.0.0 <=6.1.1":
- version "6.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/emoji-regex/-/emoji-regex-6.1.1.tgz#c6cd0ec1b0642e2a3c67a1137efc5e796da4f88e"
- integrity sha1-xs0OwbBkLio8Z6ETfvxeeW2k+I4=
-
-emojis-list@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/emojis-list/-/emojis-list-2.1.0.tgz#4daa4d9db00f9819880c79fa457ae5b09a1fd389"
- integrity sha1-TapNnbAPmBmIDHn6RXrlsJof04k=
-
-encodeurl@~1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/encodeurl/-/encodeurl-1.0.2.tgz#ad3ff4c86ec2d029322f5a02c3a9a606c95b3f59"
- integrity sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=
-
-end-of-stream@^1.0.0, end-of-stream@^1.1.0:
- version "1.4.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0"
- integrity sha1-WuZKX0UFe682JuwU2gyl5LJDHrA=
- dependencies:
- once "^1.4.0"
-
-entities@^1.1.1, entities@~1.1.1:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/entities/-/entities-1.1.2.tgz#bdfa735299664dfafd34529ed4f8522a275fea56"
- integrity sha1-vfpzUplmTfr9NFKe1PhSKidf6lY=
-
-entities@^2.0.0:
- version "2.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f"
- integrity sha1-XEh+V0Krk8Fau12iJ1m4WQ7AO38=
-
-error-ex@^1.2.0, error-ex@^1.3.1:
- version "1.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
- integrity sha1-tKxAZIEH/c3PriQvQovqihTU8b8=
- dependencies:
- is-arrayish "^0.2.1"
-
-error@^7.0.0:
- version "7.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/error/-/error-7.2.1.tgz#eab21a4689b5f684fc83da84a0e390de82d94894"
- integrity sha1-6rIaRom19oT8g9qEoOOQ3oLZSJQ=
- dependencies:
- string-template "~0.2.1"
-
-es-abstract@^1.17.0-next.1, es-abstract@^1.17.2, es-abstract@^1.17.5:
- version "1.17.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/es-abstract/-/es-abstract-1.17.6.tgz#9142071707857b2cacc7b89ecb670316c3e2d52a"
- integrity sha1-kUIHFweFeyysx7iey2cDFsPi1So=
- dependencies:
- es-to-primitive "^1.2.1"
- function-bind "^1.1.1"
- has "^1.0.3"
- has-symbols "^1.0.1"
- is-callable "^1.2.0"
- is-regex "^1.1.0"
- object-inspect "^1.7.0"
- object-keys "^1.1.1"
- object.assign "^4.1.0"
- string.prototype.trimend "^1.0.1"
- string.prototype.trimstart "^1.0.1"
-
-es-to-primitive@^1.2.1:
- version "1.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a"
- integrity sha1-5VzUyc3BiLzvsDs2bHNjI/xciYo=
- dependencies:
- is-callable "^1.1.4"
- is-date-object "^1.0.1"
- is-symbol "^1.0.2"
-
-escalade@^3.0.2:
- version "3.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/escalade/-/escalade-3.0.2.tgz#6a580d70edb87880f22b4c91d0d56078df6962c4"
- integrity sha1-algNcO24eIDyK0yR0NVgeN9pYsQ=
-
-escape-html@~1.0.3:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/escape-html/-/escape-html-1.0.3.tgz#0258eae4d3d0c0974de1c169188ef0051d1d1988"
- integrity sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=
-
-escape-string-regexp@1.0.5, escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5:
- version "1.0.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
- integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
-
-escape-string-regexp@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344"
- integrity sha1-owME6Z2qMuI7L9IPUbq9B8/8o0Q=
-
-esprima@^4.0.0:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
- integrity sha1-E7BM2z5sXRnfkatph6hpVhmwqnE=
-
-esutils@^2.0.2:
- version "2.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64"
- integrity sha1-dNLrTeC42hKTcRkQ1Qd1ubcQ72Q=
-
-etag@~1.8.1:
- version "1.8.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
- integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=
-
-eventsource@^1.0.7:
- version "1.0.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/eventsource/-/eventsource-1.0.7.tgz#8fbc72c93fcd34088090bc0a4e64f4b5cee6d8d0"
- integrity sha1-j7xyyT/NNAiAkLwKTmT0tc7m2NA=
- dependencies:
- original "^1.0.0"
-
-exec-buffer@^3.0.0:
- version "3.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/exec-buffer/-/exec-buffer-3.2.0.tgz#b1686dbd904c7cf982e652c1f5a79b1e5573082b"
- integrity sha1-sWhtvZBMfPmC5lLB9aebHlVzCCs=
- dependencies:
- execa "^0.7.0"
- p-finally "^1.0.0"
- pify "^3.0.0"
- rimraf "^2.5.4"
- tempfile "^2.0.0"
-
-execa@^0.7.0:
- version "0.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/execa/-/execa-0.7.0.tgz#944becd34cc41ee32a63a9faf27ad5a65fc59777"
- integrity sha1-lEvs00zEHuMqY6n68nrVpl/Fl3c=
- dependencies:
- cross-spawn "^5.0.1"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-execa@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/execa/-/execa-1.0.0.tgz#c6236a5bb4df6d6f15e88e7f017798216749ddd8"
- integrity sha1-xiNqW7TfbW8V6I5/AXeYIWdJ3dg=
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^4.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
-
-executable@^4.1.0:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c"
- integrity sha1-QVMr/zYdPlevTXY7cFgtsY9dEzw=
- dependencies:
- pify "^2.2.0"
-
-expand-brackets@^2.1.4:
- version "2.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
- integrity sha1-t3c14xXOMPa27/D4OwQVGiJEliI=
- dependencies:
- debug "^2.3.3"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- posix-character-classes "^0.1.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-expand-range@^1.8.1:
- version "1.8.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/expand-range/-/expand-range-1.8.2.tgz#a299effd335fe2721ebae8e257ec79644fc85337"
- integrity sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=
- dependencies:
- fill-range "^2.1.0"
-
-express@^4.17.1:
- version "4.17.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
- integrity sha1-RJH8OGBc9R+GKdOcK10Cb5ikwTQ=
- dependencies:
- accepts "~1.3.7"
- array-flatten "1.1.1"
- body-parser "1.19.0"
- content-disposition "0.5.3"
- content-type "~1.0.4"
- cookie "0.4.0"
- cookie-signature "1.0.6"
- debug "2.6.9"
- depd "~1.1.2"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- finalhandler "~1.1.2"
- fresh "0.5.2"
- merge-descriptors "1.0.1"
- methods "~1.1.2"
- on-finished "~2.3.0"
- parseurl "~1.3.3"
- path-to-regexp "0.1.7"
- proxy-addr "~2.0.5"
- qs "6.7.0"
- range-parser "~1.2.1"
- safe-buffer "5.1.2"
- send "0.17.1"
- serve-static "1.14.1"
- setprototypeof "1.1.1"
- statuses "~1.5.0"
- type-is "~1.6.18"
- utils-merge "1.0.1"
- vary "~1.1.2"
-
-ext-list@^2.0.0:
- version "2.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37"
- integrity sha1-C5jmTtgvWs8PKTG6v2khLvUt3Tc=
- dependencies:
- mime-db "^1.28.0"
-
-ext-name@^5.0.0:
- version "5.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6"
- integrity sha1-cHgZgdGD7hXROZPIgiBFxQbI8KY=
- dependencies:
- ext-list "^2.0.0"
- sort-keys-length "^1.0.0"
-
-extend-shallow@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
- integrity sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=
- dependencies:
- is-extendable "^0.1.0"
-
-extend-shallow@^3.0.0, extend-shallow@^3.0.2:
- version "3.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extend-shallow/-/extend-shallow-3.0.2.tgz#26a71aaf073b39fb2127172746131c2704028db8"
- integrity sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=
- dependencies:
- assign-symbols "^1.0.0"
- is-extendable "^1.0.1"
-
-extend@~3.0.2:
- version "3.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
- integrity sha1-+LETa0Bx+9jrFAr/hYsQGewpFfo=
-
-external-editor@^3.0.3:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/external-editor/-/external-editor-3.1.0.tgz#cb03f740befae03ea4d283caed2741a83f335495"
- integrity sha1-ywP3QL764D6k0oPK7SdBqD8zVJU=
- dependencies:
- chardet "^0.7.0"
- iconv-lite "^0.4.24"
- tmp "^0.0.33"
-
-extglob@^2.0.4:
- version "2.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extglob/-/extglob-2.0.4.tgz#ad00fe4dc612a9232e8718711dc5cb5ab0285543"
- integrity sha1-rQD+TcYSqSMuhxhxHcXLWrAoVUM=
- dependencies:
- array-unique "^0.3.2"
- define-property "^1.0.0"
- expand-brackets "^2.1.4"
- extend-shallow "^2.0.1"
- fragment-cache "^0.2.1"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-extsprintf@1.3.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extsprintf/-/extsprintf-1.3.0.tgz#96918440e3041a7a414f8c52e3c574eb3c3e1e05"
- integrity sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=
-
-extsprintf@^1.2.0:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/extsprintf/-/extsprintf-1.4.0.tgz#e2689f8f356fad62cca65a3a91c5df5f9551692f"
- integrity sha1-4mifjzVvrWLMplo6kcXfX5VRaS8=
-
-fast-deep-equal@^3.1.1:
- version "3.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525"
- integrity sha1-On1WtVnWy8PrUSMlJE5hmmXGxSU=
-
-fast-glob@^2.0.2:
- version "2.2.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fast-glob/-/fast-glob-2.2.7.tgz#6953857c3afa475fff92ee6015d52da70a4cd39d"
- integrity sha1-aVOFfDr6R1//ku5gFdUtpwpM050=
- dependencies:
- "@mrmlnc/readdir-enhanced" "^2.2.1"
- "@nodelib/fs.stat" "^1.1.2"
- glob-parent "^3.1.0"
- is-glob "^4.0.0"
- merge2 "^1.2.3"
- micromatch "^3.1.10"
-
-fast-json-stable-stringify@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
- integrity sha1-h0v2nG9ATCtdmcSBNBOZ/VWJJjM=
-
-faye-websocket@~0.10.0:
- version "0.10.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/faye-websocket/-/faye-websocket-0.10.0.tgz#4e492f8d04dfb6f89003507f6edbf2d501e7c6f4"
- integrity sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=
- dependencies:
- websocket-driver ">=0.5.1"
-
-faye-websocket@~0.11.1:
- version "0.11.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/faye-websocket/-/faye-websocket-0.11.3.tgz#5c0e9a8968e8912c286639fde977a8b209f2508e"
- integrity sha1-XA6aiWjokSwoZjn96XeosgnyUI4=
- dependencies:
- websocket-driver ">=0.5.1"
-
-fd-slicer@~1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fd-slicer/-/fd-slicer-1.1.0.tgz#25c7c89cb1f9077f8891bbe61d8f390eae256f1e"
- integrity sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=
- dependencies:
- pend "~1.2.0"
-
-feed@^4.0.0:
- version "4.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/feed/-/feed-4.2.1.tgz#b246ef891051c7dbf088ca203341d9fb0444baee"
- integrity sha1-skbviRBRx9vwiMogM0HZ+wREuu4=
- dependencies:
- xml-js "^1.6.11"
-
-figures@^1.3.5:
- version "1.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/figures/-/figures-1.7.0.tgz#cbe1e3affcf1cd44b80cadfed28dc793a9701d2e"
- integrity sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=
- dependencies:
- escape-string-regexp "^1.0.5"
- object-assign "^4.1.0"
-
-figures@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/figures/-/figures-2.0.0.tgz#3ab1a2d2a62c8bfb431a0c94cb797a2fce27c962"
- integrity sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=
- dependencies:
- escape-string-regexp "^1.0.5"
-
-file-type@5.2.0, file-type@^5.2.0:
- version "5.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-5.2.0.tgz#2ddbea7c73ffe36368dfae49dc338c058c2b8ad6"
- integrity sha1-LdvqfHP/42No365J3DOMBYwritY=
-
-file-type@^10.4.0, file-type@^10.7.0:
- version "10.11.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-10.11.0.tgz#2961d09e4675b9fb9a3ee6b69e9cd23f43fd1890"
- integrity sha1-KWHQnkZ1ufuaPua2npzSP0P9GJA=
-
-file-type@^3.8.0:
- version "3.9.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-3.9.0.tgz#257a078384d1db8087bc449d107d52a52672b9e9"
- integrity sha1-JXoHg4TR24CHvESdEH1SpSZyuek=
-
-file-type@^4.2.0:
- version "4.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-4.4.0.tgz#1b600e5fca1fbdc6e80c0a70c71c8dba5f7906c5"
- integrity sha1-G2AOX8ofvcboDApwxxyNul95BsU=
-
-file-type@^6.1.0:
- version "6.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-6.2.0.tgz#e50cd75d356ffed4e306dc4f5bcf52a79903a919"
- integrity sha1-5QzXXTVv/tTjBtxPW89Sp5kDqRk=
-
-file-type@^8.1.0:
- version "8.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-type/-/file-type-8.1.0.tgz#244f3b7ef641bbe0cca196c7276e4b332399f68c"
- integrity sha1-JE87fvZBu+DMoZbHJ25LMyOZ9ow=
-
-file-uri-to-path@1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz#553a7b8446ff6f684359c445f1e37a05dacc33dd"
- integrity sha1-VTp7hEb/b2hDWcRF8eN6BdrMM90=
-
-filename-reserved-regex@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz#abf73dfab735d045440abfea2d91f389ebbfa229"
- integrity sha1-q/c9+rc10EVECr/qLZHzieu/oik=
-
-filenamify@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/filenamify/-/filenamify-2.1.0.tgz#88faf495fb1b47abfd612300002a16228c677ee9"
- integrity sha1-iPr0lfsbR6v9YSMAACoWIoxnfuk=
- dependencies:
- filename-reserved-regex "^2.0.0"
- strip-outer "^1.0.0"
- trim-repeated "^1.0.0"
-
-filesize@3.6.1:
- version "3.6.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
- integrity sha1-CQuz7gG2+AGoqL6Z0xcQs0Irsxc=
-
-fill-range@^2.1.0:
- version "2.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fill-range/-/fill-range-2.2.4.tgz#eb1e773abb056dcd8df2bfdf6af59b8b3a936565"
- integrity sha1-6x53OrsFbc2N8r/favWbizqTZWU=
- dependencies:
- is-number "^2.1.0"
- isobject "^2.0.0"
- randomatic "^3.0.0"
- repeat-element "^1.1.2"
- repeat-string "^1.5.2"
-
-fill-range@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fill-range/-/fill-range-4.0.0.tgz#d544811d428f98eb06a63dc402d2403c328c38f7"
- integrity sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=
- dependencies:
- extend-shallow "^2.0.1"
- is-number "^3.0.0"
- repeat-string "^1.6.1"
- to-regex-range "^2.1.0"
-
-finalhandler@~1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
- integrity sha1-t+fQAP/RGTjQ/bBTUG9uur6fWH0=
- dependencies:
- debug "2.6.9"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- on-finished "~2.3.0"
- parseurl "~1.3.3"
- statuses "~1.5.0"
- unpipe "~1.0.0"
-
-find-cache-dir@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/find-cache-dir/-/find-cache-dir-2.1.0.tgz#8d0f94cd13fe43c6c7c261a0d86115ca918c05f7"
- integrity sha1-jQ+UzRP+Q8bHwmGg2GEVypGMBfc=
- dependencies:
- commondir "^1.0.1"
- make-dir "^2.0.0"
- pkg-dir "^3.0.0"
-
-find-up@3.0.0, find-up@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/find-up/-/find-up-3.0.0.tgz#49169f1d7993430646da61ecc5ae355c21c97b73"
- integrity sha1-SRafHXmTQwZG2mHsxa41XCHJe3M=
- dependencies:
- locate-path "^3.0.0"
-
-find-up@^1.0.0:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
- integrity sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=
- dependencies:
- path-exists "^2.0.0"
- pinkie-promise "^2.0.0"
-
-find-up@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7"
- integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c=
- dependencies:
- locate-path "^2.0.0"
-
-find-versions@^3.0.0:
- version "3.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e"
- integrity sha1-ECl/mAMKeGgpaBaQVF72We0dJU4=
- dependencies:
- semver-regex "^2.0.0"
-
-for-in@^1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/for-in/-/for-in-1.0.2.tgz#81068d295a8142ec0ac726c6e2200c30fb6d5e80"
- integrity sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=
-
-forever-agent@~0.6.1:
- version "0.6.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
- integrity sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=
-
-fork-ts-checker-webpack-plugin@1.5.0:
- version "1.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-1.5.0.tgz#ce1d77190b44d81a761b10b6284a373795e41f0c"
- integrity sha1-zh13GQtE2Bp2GxC2KEo3N5XkHww=
- dependencies:
- babel-code-frame "^6.22.0"
- chalk "^2.4.1"
- chokidar "^2.0.4"
- micromatch "^3.1.10"
- minimatch "^3.0.4"
- semver "^5.6.0"
- tapable "^1.0.0"
- worker-rpc "^0.1.0"
-
-form-data@~2.3.2:
- version "2.3.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/form-data/-/form-data-2.3.3.tgz#dcce52c05f644f298c6a7ab936bd724ceffbf3a6"
- integrity sha1-3M5SwF9kTymManq5Nr1yTO/786Y=
- dependencies:
- asynckit "^0.4.0"
- combined-stream "^1.0.6"
- mime-types "^2.1.12"
-
-forwarded@~0.1.2:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/forwarded/-/forwarded-0.1.2.tgz#98c23dab1175657b8c0573e8ceccd91b0ff18c84"
- integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=
-
-fragment-cache@^0.2.1:
- version "0.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fragment-cache/-/fragment-cache-0.2.1.tgz#4290fad27f13e89be7f33799c6bc5a0abfff0d19"
- integrity sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=
- dependencies:
- map-cache "^0.2.2"
-
-fresh@0.5.2:
- version "0.5.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
- integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-
-from2@^2.1.1:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
- integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
- dependencies:
- inherits "^2.0.1"
- readable-stream "^2.0.0"
-
-fs-constants@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad"
- integrity sha1-a+Dem+mYzhavivwkSXue6bfM2a0=
-
-fs-extra@^8.1.0:
- version "8.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0"
- integrity sha1-SdQ8RaiM2Wd2aMt74bRu/bjS4cA=
- dependencies:
- graceful-fs "^4.2.0"
- jsonfile "^4.0.0"
- universalify "^0.1.0"
-
-fs.realpath@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
- integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-
-fsevents@^1.2.7:
- version "1.2.13"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/fsevents/-/fsevents-1.2.13.tgz#f325cb0455592428bcf11b383370ef70e3bfcc38"
- integrity sha1-8yXLBFVZJCi88Rs4M3DvcOO/zDg=
- dependencies:
- bindings "^1.5.0"
- nan "^2.12.1"
-
-function-bind@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
- integrity sha1-pWiZ0+o8m6uHS7l3O3xe3pL0iV0=
-
-gaze@^1.1.3:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gaze/-/gaze-1.1.3.tgz#c441733e13b927ac8c0ff0b4c3b033f28812924a"
- integrity sha1-xEFzPhO5J6yMD/C0w7Az8ogSkko=
- dependencies:
- globule "^1.0.0"
-
-gensync@^1.0.0-beta.1:
- version "1.0.0-beta.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gensync/-/gensync-1.0.0-beta.1.tgz#58f4361ff987e5ff6e1e7a210827aa371eaac269"
- integrity sha1-WPQ2H/mH5f9uHnohCCeqNx6qwmk=
-
-get-proxy@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-proxy/-/get-proxy-2.1.0.tgz#349f2b4d91d44c4d4d4e9cba2ad90143fac5ef93"
- integrity sha1-NJ8rTZHUTE1NTpy6KtkBQ/rF75M=
- dependencies:
- npm-conf "^1.1.0"
-
-get-stdin@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe"
- integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=
-
-get-stream@3.0.0, get-stream@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
- integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
-
-get-stream@^2.2.0:
- version "2.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-stream/-/get-stream-2.3.1.tgz#5f38f93f346009666ee0150a054167f91bdd95de"
- integrity sha1-Xzj5PzRgCWZu4BUKBUFn+Rvdld4=
- dependencies:
- object-assign "^4.0.1"
- pinkie-promise "^2.0.0"
-
-get-stream@^4.0.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-stream/-/get-stream-4.1.0.tgz#c1b255575f3dc21d59bfc79cd3d2b46b1c3a54b5"
- integrity sha1-wbJVV189wh1Zv8ec09K0axw6VLU=
- dependencies:
- pump "^3.0.0"
-
-get-value@^2.0.3, get-value@^2.0.6:
- version "2.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/get-value/-/get-value-2.0.6.tgz#dc15ca1c672387ca76bd37ac0a395ba2042a2c28"
- integrity sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=
-
-getpass@^0.1.1:
- version "0.1.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/getpass/-/getpass-0.1.7.tgz#5eff8e3e684d569ae4cb2b1282604e8ba62149fa"
- integrity sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=
- dependencies:
- assert-plus "^1.0.0"
-
-gifsicle@^4.0.0:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gifsicle/-/gifsicle-4.0.1.tgz#30e1e61e3ee4884ef702641b2e98a15c2127b2e2"
- integrity sha1-MOHmHj7kiE73AmQbLpihXCEnsuI=
- dependencies:
- bin-build "^3.0.0"
- bin-wrapper "^4.0.0"
- execa "^1.0.0"
- logalot "^2.0.0"
-
-github-slugger@^1.2.1:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9"
- integrity sha1-m9CpXF79/EYAXoKpBu+OKgWRJMk=
- dependencies:
- emoji-regex ">=6.0.0 <=6.1.1"
-
-glob-parent@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/glob-parent/-/glob-parent-3.1.0.tgz#9e6af6299d8d3bd2bd40430832bd113df906c5ae"
- integrity sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=
- dependencies:
- is-glob "^3.1.0"
- path-dirname "^1.0.0"
-
-glob-to-regexp@^0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
- integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
-
-glob@^7.0.0, glob@^7.0.5, glob@^7.1.2, glob@^7.1.3, glob@^7.1.6, glob@~7.1.1:
- version "7.1.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
- integrity sha1-FB8zuBp8JJLhJVlDB0gMRmeSeKY=
- dependencies:
- fs.realpath "^1.0.0"
- inflight "^1.0.4"
- inherits "2"
- minimatch "^3.0.4"
- once "^1.3.0"
- path-is-absolute "^1.0.0"
-
-global-modules@2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/global-modules/-/global-modules-2.0.0.tgz#997605ad2345f27f51539bea26574421215c7780"
- integrity sha1-mXYFrSNF8n9RU5vqJldEISFcd4A=
- dependencies:
- global-prefix "^3.0.0"
-
-global-prefix@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/global-prefix/-/global-prefix-3.0.0.tgz#fc85f73064df69f50421f47f883fe5b913ba9b97"
- integrity sha1-/IX3MGTfafUEIfR/iD/luRO6m5c=
- dependencies:
- ini "^1.3.5"
- kind-of "^6.0.2"
- which "^1.3.1"
-
-globals@^11.1.0:
- version "11.12.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
- integrity sha1-q4eVM4hooLq9hSV1gBjCp+uVxC4=
-
-globby@8.0.2, globby@^8.0.1:
- version "8.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/globby/-/globby-8.0.2.tgz#5697619ccd95c5275dbb2d6faa42087c1a941d8d"
- integrity sha1-VpdhnM2VxSdduy1vqkIIfBqUHY0=
- dependencies:
- array-union "^1.0.1"
- dir-glob "2.0.0"
- fast-glob "^2.0.2"
- glob "^7.1.2"
- ignore "^3.3.5"
- pify "^3.0.0"
- slash "^1.0.0"
-
-globule@^1.0.0:
- version "1.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/globule/-/globule-1.3.2.tgz#d8bdd9e9e4eef8f96e245999a5dee7eb5d8529c4"
- integrity sha1-2L3Z6eTu+PluJFmZpd7n612FKcQ=
- dependencies:
- glob "~7.1.1"
- lodash "~4.17.10"
- minimatch "~3.0.2"
-
-good-listener@^1.2.2:
- version "1.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
- integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
- dependencies:
- delegate "^3.1.2"
-
-got@^7.0.0:
- version "7.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/got/-/got-7.1.0.tgz#05450fd84094e6bbea56f451a43a9c289166385a"
- integrity sha1-BUUP2ECU5rvqVvRRpDqcKJFmOFo=
- dependencies:
- decompress-response "^3.2.0"
- duplexer3 "^0.1.4"
- get-stream "^3.0.0"
- is-plain-obj "^1.1.0"
- is-retry-allowed "^1.0.0"
- is-stream "^1.0.0"
- isurl "^1.0.0-alpha5"
- lowercase-keys "^1.0.0"
- p-cancelable "^0.3.0"
- p-timeout "^1.1.1"
- safe-buffer "^5.0.1"
- timed-out "^4.0.0"
- url-parse-lax "^1.0.0"
- url-to-options "^1.0.1"
-
-got@^8.3.1:
- version "8.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937"
- integrity sha1-HSP2Q5Dpf3dsrFLluTbl9RTS6Tc=
- dependencies:
- "@sindresorhus/is" "^0.7.0"
- cacheable-request "^2.1.1"
- decompress-response "^3.3.0"
- duplexer3 "^0.1.4"
- get-stream "^3.0.0"
- into-stream "^3.1.0"
- is-retry-allowed "^1.1.0"
- isurl "^1.0.0-alpha5"
- lowercase-keys "^1.0.0"
- mimic-response "^1.0.0"
- p-cancelable "^0.4.0"
- p-timeout "^2.0.1"
- pify "^3.0.0"
- safe-buffer "^5.1.1"
- timed-out "^4.0.1"
- url-parse-lax "^3.0.0"
- url-to-options "^1.0.1"
-
-graceful-fs@^4.1.10, graceful-fs@^4.1.11, graceful-fs@^4.1.2, graceful-fs@^4.1.6, graceful-fs@^4.2.0:
- version "4.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/graceful-fs/-/graceful-fs-4.2.4.tgz#2256bde14d3632958c465ebc96dc467ca07a29fb"
- integrity sha1-Ila94U02MpWMRl68ltxGfKB6Kfs=
-
-gray-matter@^2.1.0:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gray-matter/-/gray-matter-2.1.1.tgz#3042d9adec2a1ded6a7707a9ed2380f8a17a430e"
- integrity sha1-MELZrewqHe1qdwep7SOA+KF6Qw4=
- dependencies:
- ansi-red "^0.1.1"
- coffee-script "^1.12.4"
- extend-shallow "^2.0.1"
- js-yaml "^3.8.1"
- toml "^2.3.2"
-
-gulp-header@^1.7.1:
- version "1.8.12"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gulp-header/-/gulp-header-1.8.12.tgz#ad306be0066599127281c4f8786660e705080a84"
- integrity sha1-rTBr4AZlmRJygcT4eGZg5wUICoQ=
- dependencies:
- concat-with-sourcemaps "*"
- lodash.template "^4.4.0"
- through2 "^2.0.0"
-
-gzip-size@5.1.1:
- version "5.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/gzip-size/-/gzip-size-5.1.1.tgz#cb9bee692f87c0612b232840a873904e4c135274"
- integrity sha1-y5vuaS+HwGErIyhAqHOQTkwTUnQ=
- dependencies:
- duplexer "^0.1.1"
- pify "^4.0.1"
-
-har-schema@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/har-schema/-/har-schema-2.0.0.tgz#a94c2224ebcac04782a0d9035521f24735b7ec92"
- integrity sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=
-
-har-validator@~5.1.3:
- version "5.1.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/har-validator/-/har-validator-5.1.5.tgz#1f0803b9f8cb20c0fa13822df1ecddb36bde1efd"
- integrity sha1-HwgDufjLIMD6E4It8ezds2veHv0=
- dependencies:
- ajv "^6.12.3"
- har-schema "^2.0.0"
-
-has-ansi@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
- integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
- dependencies:
- ansi-regex "^2.0.0"
-
-has-flag@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
- integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
-
-has-flag@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b"
- integrity sha1-lEdx/ZyByBJlxNaUGGDaBrtZR5s=
-
-has-symbol-support-x@^1.4.1:
- version "1.4.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
- integrity sha1-FAn5i8ACR9pF2mfO4KNvKC/yZFU=
-
-has-symbols@^1.0.0, has-symbols@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-symbols/-/has-symbols-1.0.1.tgz#9f5214758a44196c406d9bd76cebf81ec2dd31e8"
- integrity sha1-n1IUdYpEGWxAbZvXbOv4HsLdMeg=
-
-has-to-string-tag-x@^1.2.0:
- version "1.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d"
- integrity sha1-oEWrOD17SyASoAFIqwql8pAETU0=
- dependencies:
- has-symbol-support-x "^1.4.1"
-
-has-value@^0.3.1:
- version "0.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-value/-/has-value-0.3.1.tgz#7b1f58bada62ca827ec0a2078025654845995e1f"
- integrity sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=
- dependencies:
- get-value "^2.0.3"
- has-values "^0.1.4"
- isobject "^2.0.0"
-
-has-value@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-value/-/has-value-1.0.0.tgz#18b281da585b1c5c51def24c930ed29a0be6b177"
- integrity sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=
- dependencies:
- get-value "^2.0.6"
- has-values "^1.0.0"
- isobject "^3.0.0"
-
-has-values@^0.1.4:
- version "0.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-values/-/has-values-0.1.4.tgz#6d61de95d91dfca9b9a02089ad384bff8f62b771"
- integrity sha1-bWHeldkd/Km5oCCJrThL/49it3E=
-
-has-values@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has-values/-/has-values-1.0.0.tgz#95b0b63fec2146619a6fe57fe75628d5a39efe4f"
- integrity sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=
- dependencies:
- is-number "^3.0.0"
- kind-of "^4.0.0"
-
-has@^1.0.0, has@^1.0.3:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796"
- integrity sha1-ci18v8H2qoJB8W3YFOAR4fQeh5Y=
- dependencies:
- function-bind "^1.1.1"
-
-hex-color-regex@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/hex-color-regex/-/hex-color-regex-1.1.0.tgz#4c06fccb4602fe2602b3c93df82d7e7dbf1a8a8e"
- integrity sha1-TAb8y0YC/iYCs8k9+C1+fb8aio4=
-
-highlight.js@^9.16.2:
- version "9.18.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/highlight.js/-/highlight.js-9.18.3.tgz#a1a0a2028d5e3149e2380f8a865ee8516703d634"
- integrity sha1-oaCiAo1eMUniOA+Khl7oUWcD1jQ=
-
-hosted-git-info@^2.1.4:
- version "2.8.8"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/hosted-git-info/-/hosted-git-info-2.8.8.tgz#7539bd4bc1e0e0a895815a2e0262420b12858488"
- integrity sha1-dTm9S8Hg4KiVgVouAmJCCxKFhIg=
-
-hsl-regex@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/hsl-regex/-/hsl-regex-1.0.0.tgz#d49330c789ed819e276a4c0d272dffa30b18fe6e"
- integrity sha1-1JMwx4ntgZ4nakwNJy3/owsY/m4=
-
-hsla-regex@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/hsla-regex/-/hsla-regex-1.0.0.tgz#c1ce7a3168c8c6614033a4b5f7877f3b225f9c38"
- integrity sha1-wc56MWjIxmFAM6S194d/OyJfnDg=
-
-html-comment-regex@^1.1.0, html-comment-regex@^1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/html-comment-regex/-/html-comment-regex-1.1.2.tgz#97d4688aeb5c81886a364faa0cad1dda14d433a7"
- integrity sha1-l9RoiutcgYhqNk+qDK0d2hTUM6c=
-
-htmlparser2@^3.9.1:
- version "3.10.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/htmlparser2/-/htmlparser2-3.10.1.tgz#bd679dc3f59897b6a34bb10749c855bb53a9392f"
- integrity sha1-vWedw/WYl7ajS7EHSchVu1OpOS8=
- dependencies:
- domelementtype "^1.3.1"
- domhandler "^2.3.0"
- domutils "^1.5.1"
- entities "^1.1.1"
- inherits "^2.0.1"
- readable-stream "^3.1.1"
-
-http-cache-semantics@3.8.1:
- version "3.8.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
- integrity sha1-ObDhat2bYFvwqe89nar0hDtMrNI=
-
-http-errors@1.7.2:
- version "1.7.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
- integrity sha1-T1ApzxMjnzEDblsuVSkrz7zIXI8=
- dependencies:
- depd "~1.1.2"
- inherits "2.0.3"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-errors@~1.7.2:
- version "1.7.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
- integrity sha1-bGGeT5xgMIw4UZSYwU+7EKrOuwY=
- dependencies:
- depd "~1.1.2"
- inherits "2.0.4"
- setprototypeof "1.1.1"
- statuses ">= 1.5.0 < 2"
- toidentifier "1.0.0"
-
-http-parser-js@>=0.5.1:
- version "0.5.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/http-parser-js/-/http-parser-js-0.5.2.tgz#da2e31d237b393aae72ace43882dd7e270a8ff77"
- integrity sha1-2i4x0jezk6rnKs5DiC3X4nCo/3c=
-
-http-signature@~1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/http-signature/-/http-signature-1.2.0.tgz#9aecd925114772f3d95b65a60abb8f7c18fbace1"
- integrity sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=
- dependencies:
- assert-plus "^1.0.0"
- jsprim "^1.2.2"
- sshpk "^1.7.0"
-
-iconv-lite@0.4.24, iconv-lite@^0.4.24:
- version "0.4.24"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
- integrity sha1-ICK0sl+93CHS9SSXSkdKr+czkIs=
- dependencies:
- safer-buffer ">= 2.1.2 < 3"
-
-ieee754@^1.1.4:
- version "1.1.13"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84"
- integrity sha1-7BaFWOlaoYH9h9N/VcMrvLZwi4Q=
-
-ignore@^3.3.5:
- version "3.3.10"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ignore/-/ignore-3.3.10.tgz#0a97fb876986e8081c631160f8f9f389157f0043"
- integrity sha1-Cpf7h2mG6AgcYxFg+PnziRV/AEM=
-
-imagemin-gifsicle@^6.0.1:
- version "6.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/imagemin-gifsicle/-/imagemin-gifsicle-6.0.1.tgz#6abad4e95566d52e5a104aba1c24b4f3b48581b3"
- integrity sha1-arrU6VVm1S5aEEq6HCS087SFgbM=
- dependencies:
- exec-buffer "^3.0.0"
- gifsicle "^4.0.0"
- is-gif "^3.0.0"
-
-imagemin-jpegtran@^6.0.0:
- version "6.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/imagemin-jpegtran/-/imagemin-jpegtran-6.0.0.tgz#c8d3bcfb6ec9c561c20a987142854be70d90b04f"
- integrity sha1-yNO8+27JxWHCCphxQoVL5w2QsE8=
- dependencies:
- exec-buffer "^3.0.0"
- is-jpg "^2.0.0"
- jpegtran-bin "^4.0.0"
-
-imagemin-optipng@^6.0.0:
- version "6.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/imagemin-optipng/-/imagemin-optipng-6.0.0.tgz#a6bfc7b542fc08fc687e83dfb131249179a51a68"
- integrity sha1-pr/HtUL8CPxofoPfsTEkkXmlGmg=
- dependencies:
- exec-buffer "^3.0.0"
- is-png "^1.0.0"
- optipng-bin "^5.0.0"
-
-imagemin-svgo@^7.0.0:
- version "7.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/imagemin-svgo/-/imagemin-svgo-7.1.0.tgz#528a42fd3d55eff5d4af8fd1113f25fb61ad6d9a"
- integrity sha1-UopC/T1V7/XUr4/RET8l+2GtbZo=
- dependencies:
- is-svg "^4.2.1"
- svgo "^1.3.2"
-
-imagemin@^6.0.0:
- version "6.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/imagemin/-/imagemin-6.1.0.tgz#62508b465728fea36c03cdc07d915fe2d8cf9e13"
- integrity sha1-YlCLRlco/qNsA83AfZFf4tjPnhM=
- dependencies:
- file-type "^10.7.0"
- globby "^8.0.1"
- make-dir "^1.0.0"
- p-pipe "^1.1.0"
- pify "^4.0.1"
- replace-ext "^1.0.0"
-
-immer@1.10.0:
- version "1.10.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/immer/-/immer-1.10.0.tgz#bad67605ba9c810275d91e1c2a47d4582e98286d"
- integrity sha1-utZ2BbqcgQJ12R4cKkfUWC6YKG0=
-
-import-fresh@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
- integrity sha1-2BNVwVYS04bGH53dOSLUMEgipUY=
- dependencies:
- caller-path "^2.0.0"
- resolve-from "^3.0.0"
-
-import-lazy@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/import-lazy/-/import-lazy-3.1.0.tgz#891279202c8a2280fdbd6674dbd8da1a1dfc67cc"
- integrity sha1-iRJ5ICyKIoD9vWZ029jaGh38Z8w=
-
-indent-string@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/indent-string/-/indent-string-2.1.0.tgz#8e2d48348742121b4a8218b7a137e9a52049dc80"
- integrity sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=
- dependencies:
- repeating "^2.0.0"
-
-indexes-of@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607"
- integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc=
-
-inflight@^1.0.4:
- version "1.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9"
- integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
- dependencies:
- once "^1.3.0"
- wrappy "1"
-
-inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.3:
- version "2.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
- integrity sha1-D6LGT5MpF8NDOg3tVTY6rjdBa3w=
-
-inherits@2.0.3:
- version "2.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
- integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
-
-ini@^1.3.4, ini@^1.3.5:
- version "1.3.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
- integrity sha1-7uJfVtscnsYIXgwid4CD9Zar+Sc=
-
-inquirer@6.5.0:
- version "6.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42"
- integrity sha1-IwMxfvyaTqfsLi32+GVptzSsz0I=
- dependencies:
- ansi-escapes "^3.2.0"
- chalk "^2.4.2"
- cli-cursor "^2.1.0"
- cli-width "^2.0.0"
- external-editor "^3.0.3"
- figures "^2.0.0"
- lodash "^4.17.12"
- mute-stream "0.0.7"
- run-async "^2.2.0"
- rxjs "^6.4.0"
- string-width "^2.1.0"
- strip-ansi "^5.1.0"
- through "^2.3.6"
-
-interpret@^1.0.0:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/interpret/-/interpret-1.4.0.tgz#665ab8bc4da27a774a40584e812e3e0fa45b1a1e"
- integrity sha1-Zlq4vE2iendKQFhOgS4+D6RbGh4=
-
-into-stream@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
- integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=
- dependencies:
- from2 "^2.1.1"
- p-is-promise "^1.1.0"
-
-invariant@^2.2.2, invariant@^2.2.4:
- version "2.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
- integrity sha1-YQ88ksk1nOHbYW5TgAjSP/NRWOY=
- dependencies:
- loose-envify "^1.0.0"
-
-ip-regex@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ip-regex/-/ip-regex-2.1.0.tgz#fa78bf5d2e6913c911ce9f819ee5146bb6d844e9"
- integrity sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=
-
-ipaddr.js@1.9.1:
- version "1.9.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ipaddr.js/-/ipaddr.js-1.9.1.tgz#bff38543eeb8984825079ff3a2a8e6cbd46781b3"
- integrity sha1-v/OFQ+64mEglB5/zoqjmy9RngbM=
-
-is-absolute-url@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-absolute-url/-/is-absolute-url-2.1.0.tgz#50530dfb84fcc9aa7dbe7852e83a37b93b9f2aa6"
- integrity sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=
-
-is-accessor-descriptor@^0.1.6:
- version "0.1.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
- integrity sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=
- dependencies:
- kind-of "^3.0.2"
-
-is-accessor-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz#169c2f6d3df1f992618072365c9b0ea1f6878656"
- integrity sha1-FpwvbT3x+ZJhgHI2XJsOofaHhlY=
- dependencies:
- kind-of "^6.0.0"
-
-is-arrayish@^0.2.1:
- version "0.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d"
- integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=
-
-is-arrayish@^0.3.1:
- version "0.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03"
- integrity sha1-RXSirlb3qyBolvtDHq7tBm/fjwM=
-
-is-binary-path@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898"
- integrity sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=
- dependencies:
- binary-extensions "^1.0.0"
-
-is-buffer@^1.1.5:
- version "1.1.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-buffer/-/is-buffer-1.1.6.tgz#efaa2ea9daa0d7ab2ea13a97b2b8ad51fefbe8be"
- integrity sha1-76ouqdqg16suoTqXsritUf776L4=
-
-is-callable@^1.1.4, is-callable@^1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-callable/-/is-callable-1.2.0.tgz#83336560b54a38e35e3a2df7afd0454d691468bb"
- integrity sha1-gzNlYLVKOONeOi33r9BFTWkUaLs=
-
-is-color-stop@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-color-stop/-/is-color-stop-1.1.0.tgz#cfff471aee4dd5c9e158598fbe12967b5cdad345"
- integrity sha1-z/9HGu5N1cnhWFmPvhKWe1za00U=
- dependencies:
- css-color-names "^0.0.4"
- hex-color-regex "^1.1.0"
- hsl-regex "^1.0.0"
- hsla-regex "^1.0.0"
- rgb-regex "^1.0.1"
- rgba-regex "^1.0.0"
-
-is-data-descriptor@^0.1.4:
- version "0.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
- integrity sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=
- dependencies:
- kind-of "^3.0.2"
-
-is-data-descriptor@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz#d84876321d0e7add03990406abbbbd36ba9268c7"
- integrity sha1-2Eh2Mh0Oet0DmQQGq7u9NrqSaMc=
- dependencies:
- kind-of "^6.0.0"
-
-is-date-object@^1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-date-object/-/is-date-object-1.0.2.tgz#bda736f2cd8fd06d32844e7743bfa7494c3bfd7e"
- integrity sha1-vac28s2P0G0yhE53Q7+nSUw7/X4=
-
-is-descriptor@^0.1.0:
- version "0.1.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-descriptor/-/is-descriptor-0.1.6.tgz#366d8240dde487ca51823b1ab9f07a10a78251ca"
- integrity sha1-Nm2CQN3kh8pRgjsaufB6EKeCUco=
- dependencies:
- is-accessor-descriptor "^0.1.6"
- is-data-descriptor "^0.1.4"
- kind-of "^5.0.0"
-
-is-descriptor@^1.0.0, is-descriptor@^1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-descriptor/-/is-descriptor-1.0.2.tgz#3b159746a66604b04f8c81524ba365c5f14d86ec"
- integrity sha1-OxWXRqZmBLBPjIFSS6NlxfFNhuw=
- dependencies:
- is-accessor-descriptor "^1.0.0"
- is-data-descriptor "^1.0.0"
- kind-of "^6.0.2"
-
-is-directory@^0.3.1:
- version "0.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-directory/-/is-directory-0.3.1.tgz#61339b6f2475fc772fd9c9d83f5c8575dc154ae1"
- integrity sha1-YTObbyR1/Hcv2cnYP1yFddwVSuE=
-
-is-extendable@^0.1.0, is-extendable@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-extendable/-/is-extendable-0.1.1.tgz#62b110e289a471418e3ec36a617d472e301dfc89"
- integrity sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=
-
-is-extendable@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-extendable/-/is-extendable-1.0.1.tgz#a7470f9e426733d81bd81e1155264e3a3507cab4"
- integrity sha1-p0cPnkJnM9gb2B4RVSZOOjUHyrQ=
- dependencies:
- is-plain-object "^2.0.4"
-
-is-extglob@^2.1.0, is-extglob@^2.1.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2"
- integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=
-
-is-finite@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-finite/-/is-finite-1.1.0.tgz#904135c77fb42c0641d6aa1bcdbc4daa8da082f3"
- integrity sha1-kEE1x3+0LAZB1qobzbxNqo2ggvM=
-
-is-fullwidth-code-point@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f"
- integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=
-
-is-gif@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-gif/-/is-gif-3.0.0.tgz#c4be60b26a301d695bb833b20d9b5d66c6cf83b1"
- integrity sha1-xL5gsmowHWlbuDOyDZtdZsbPg7E=
- dependencies:
- file-type "^10.4.0"
-
-is-glob@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-glob/-/is-glob-3.1.0.tgz#7ba5ae24217804ac70707b96922567486cc3e84a"
- integrity sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=
- dependencies:
- is-extglob "^2.1.0"
-
-is-glob@^4.0.0:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc"
- integrity sha1-dWfb6fL14kZ7x3q4PEopSCQHpdw=
- dependencies:
- is-extglob "^2.1.1"
-
-is-jpg@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-jpg/-/is-jpg-2.0.0.tgz#2e1997fa6e9166eaac0242daae443403e4ef1d97"
- integrity sha1-LhmX+m6RZuqsAkLarkQ0A+TvHZc=
-
-is-natural-number@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-natural-number/-/is-natural-number-4.0.1.tgz#ab9d76e1db4ced51e35de0c72ebecf09f734cde8"
- integrity sha1-q5124dtM7VHjXeDHLr7PCfc0zeg=
-
-is-number@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-number/-/is-number-2.1.0.tgz#01fcbbb393463a548f2f466cce16dece49db908f"
- integrity sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=
- dependencies:
- kind-of "^3.0.2"
-
-is-number@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-number/-/is-number-3.0.0.tgz#24fd6201a4782cf50561c810276afc7d12d71195"
- integrity sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=
- dependencies:
- kind-of "^3.0.2"
-
-is-number@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-number/-/is-number-4.0.0.tgz#0026e37f5454d73e356dfe6564699867c6a7f0ff"
- integrity sha1-ACbjf1RU1z41bf5lZGmYZ8an8P8=
-
-is-obj@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-obj/-/is-obj-2.0.0.tgz#473fb05d973705e3fd9620545018ca8e22ef4982"
- integrity sha1-Rz+wXZc3BeP9liBUUBjKjiLvSYI=
-
-is-object@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470"
- integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA=
-
-is-plain-obj@^1.0.0, is-plain-obj@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
- integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
-
-is-plain-object@^2.0.3, is-plain-object@^2.0.4:
- version "2.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
- integrity sha1-LBY7P6+xtgbZ0Xko8FwqHDjgdnc=
- dependencies:
- isobject "^3.0.1"
-
-is-png@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-png/-/is-png-1.1.0.tgz#d574b12bf275c0350455570b0e5b57ab062077ce"
- integrity sha1-1XSxK/J1wDUEVVcLDltXqwYgd84=
-
-is-regex@^1.1.0:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-regex/-/is-regex-1.1.1.tgz#c6f98aacc546f6cec5468a07b7b153ab564a57b9"
- integrity sha1-xvmKrMVG9s7FRooHt7FTq1ZKV7k=
- dependencies:
- has-symbols "^1.0.1"
-
-is-resolvable@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
- integrity sha1-+xj4fOH+uSUWnJpAfBkxijIG7Yg=
-
-is-retry-allowed@^1.0.0, is-retry-allowed@^1.1.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz#d778488bd0a4666a3be8a1482b9f2baafedea8b4"
- integrity sha1-13hIi9CkZmo76KFIK58rqv7eqLQ=
-
-is-root@2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-root/-/is-root-2.1.0.tgz#809e18129cf1129644302a4f8544035d51984a9c"
- integrity sha1-gJ4YEpzxEpZEMCpPhUQDXVGYSpw=
-
-is-stream@^1.0.0, is-stream@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
- integrity sha1-EtSj3U5o4Lec6428hBc66A2RykQ=
-
-is-svg@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-svg/-/is-svg-3.0.0.tgz#9321dbd29c212e5ca99c4fa9794c714bcafa2f75"
- integrity sha1-kyHb0pwhLlypnE+peUxxS8r6L3U=
- dependencies:
- html-comment-regex "^1.1.0"
-
-is-svg@^4.2.1:
- version "4.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-svg/-/is-svg-4.2.1.tgz#095b496e345fec9211c2a7d5d021003e040d6f81"
- integrity sha1-CVtJbjRf7JIRwqfV0CEAPgQNb4E=
- dependencies:
- html-comment-regex "^1.1.2"
-
-is-symbol@^1.0.2:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-symbol/-/is-symbol-1.0.3.tgz#38e1014b9e6329be0de9d24a414fd7441ec61937"
- integrity sha1-OOEBS55jKb4N6dJKQU/XRB7GGTc=
- dependencies:
- has-symbols "^1.0.1"
-
-is-typedarray@~1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a"
- integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=
-
-is-url@^1.2.2:
- version "1.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-url/-/is-url-1.2.4.tgz#04a4df46d28c4cff3d73d01ff06abeb318a1aa52"
- integrity sha1-BKTfRtKMTP89c9Af8Gq+sxihqlI=
-
-is-utf8@^0.2.0:
- version "0.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-utf8/-/is-utf8-0.2.1.tgz#4b0da1442104d1b336340e80797e865cf39f7d72"
- integrity sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=
-
-is-windows@^1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d"
- integrity sha1-0YUOuXkezRjmGCzhKjDzlmNLsZ0=
-
-is-wsl@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is-wsl/-/is-wsl-1.1.0.tgz#1f16e4aa22b04d1336b66188a66af3c600c3a66d"
- integrity sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=
-
-is2@2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/is2/-/is2-2.0.1.tgz#8ac355644840921ce435d94f05d3a94634d3481a"
- integrity sha1-isNVZEhAkhzkNdlPBdOpRjTTSBo=
- dependencies:
- deep-is "^0.1.3"
- ip-regex "^2.1.0"
- is-url "^1.2.2"
-
-isarray@1.0.0, isarray@~1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11"
- integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=
-
-isexe@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10"
- integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=
-
-isobject@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isobject/-/isobject-2.1.0.tgz#f065561096a3f1da2ef46272f815c840d87e0c89"
- integrity sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=
- dependencies:
- isarray "1.0.0"
-
-isobject@^3.0.0, isobject@^3.0.1:
- version "3.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
- integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
-
-isstream@~0.1.2:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
- integrity sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=
-
-isurl@^1.0.0-alpha5:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"
- integrity sha1-sn9PSfPNqj6kSgpbfzRi5u3DnWc=
- dependencies:
- has-to-string-tag-x "^1.2.0"
- is-object "^1.0.1"
-
-jpegtran-bin@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jpegtran-bin/-/jpegtran-bin-4.0.0.tgz#d00aed809fba7aa6f30817e59eee4ddf198f8f10"
- integrity sha1-0ArtgJ+6eqbzCBflnu5N3xmPjxA=
- dependencies:
- bin-build "^3.0.0"
- bin-wrapper "^4.0.0"
- logalot "^2.0.0"
-
-"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499"
- integrity sha1-GSA/tZmR35jjoocFDUZHzerzJJk=
-
-js-tokens@^3.0.2:
- version "3.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
- integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
-
-js-yaml@^3.13.1, js-yaml@^3.8.1:
- version "3.14.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/js-yaml/-/js-yaml-3.14.0.tgz#a7a34170f26a21bb162424d8adacb4113a69e482"
- integrity sha1-p6NBcPJqIbsWJCTYray0ETpp5II=
- dependencies:
- argparse "^1.0.7"
- esprima "^4.0.0"
-
-jsbn@~0.1.0:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
- integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
-
-jsesc@^2.5.1:
- version "2.5.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4"
- integrity sha1-gFZNLkg9rPbo7yCWUKZ98/DCg6Q=
-
-jsesc@~0.5.0:
- version "0.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
- integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
-
-json-buffer@3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
- integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
-
-json-parse-better-errors@^1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
- integrity sha1-u4Z8+zRQ5pEHwTHRxRS6s9yLyqk=
-
-json-schema-traverse@^0.4.1:
- version "0.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660"
- integrity sha1-afaofZUTq4u4/mO9sJecRI5oRmA=
-
-json-schema@0.2.3:
- version "0.2.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json-schema/-/json-schema-0.2.3.tgz#b480c892e59a2f05954ce727bd3f2a4e882f9e13"
- integrity sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=
-
-json-stringify-safe@~5.0.1:
- version "5.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz#1296a2d58fd45f19a0f6ce01d65701e2c735b6eb"
- integrity sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=
-
-json3@^3.3.2:
- version "3.3.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json3/-/json3-3.3.3.tgz#7fc10e375fc5ae42c4705a5cc0aa6f62be305b81"
- integrity sha1-f8EON1/FrkLEcFpcwKpvYr4wW4E=
-
-json5@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
- integrity sha1-d5+wAYYE+oVOrL9iUhgNg1Q+Pb4=
- dependencies:
- minimist "^1.2.0"
-
-json5@^2.1.2:
- version "2.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/json5/-/json5-2.1.3.tgz#c9b0f7fa9233bfe5807fe66fcf3a5617ed597d43"
- integrity sha1-ybD3+pIzv+WAf+ZvzzpWF+1ZfUM=
- dependencies:
- minimist "^1.2.5"
-
-jsonfile@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb"
- integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=
- optionalDependencies:
- graceful-fs "^4.1.6"
-
-jsprim@^1.2.2:
- version "1.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/jsprim/-/jsprim-1.4.1.tgz#313e66bc1e5cc06e438bc1b7499c2e5c56acb6a2"
- integrity sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=
- dependencies:
- assert-plus "1.0.0"
- extsprintf "1.3.0"
- json-schema "0.2.3"
- verror "1.10.0"
-
-keyv@3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
- integrity sha1-RJI7o55osSp87H32wyaMAx8u83M=
- dependencies:
- json-buffer "3.0.0"
-
-kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
- version "3.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
- integrity sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/kind-of/-/kind-of-4.0.0.tgz#20813df3d712928b207378691a45066fae72dd57"
- integrity sha1-IIE989cSkosgc3hpGkUGb65y3Vc=
- dependencies:
- is-buffer "^1.1.5"
-
-kind-of@^5.0.0:
- version "5.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/kind-of/-/kind-of-5.1.0.tgz#729c91e2d857b7a419a1f9aa65685c4c33f5845d"
- integrity sha1-cpyR4thXt6QZofmqZWhcTDP1hF0=
-
-kind-of@^6.0.0, kind-of@^6.0.2:
- version "6.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/kind-of/-/kind-of-6.0.3.tgz#07c05034a6c349fa06e24fa35aa76db4580ce4dd"
- integrity sha1-B8BQNKbDSfoG4k+jWqdttFgM5N0=
-
-lazy-cache@^2.0.2:
- version "2.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lazy-cache/-/lazy-cache-2.0.2.tgz#b9190a4f913354694840859f8a8f7084d8822264"
- integrity sha1-uRkKT5EzVGlIQIWfio9whNiCImQ=
- dependencies:
- set-getter "^0.1.0"
-
-leven@^3.1.0:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2"
- integrity sha1-d4kd6DQGTMy6gq54QrtrFKE+1/I=
-
-levenary@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77"
- integrity sha1-hCqe6Y0gdap/ru2+MmeekgX0b3c=
- dependencies:
- leven "^3.1.0"
-
-list-item@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/list-item/-/list-item-1.1.1.tgz#0c65d00e287cb663ccb3cb3849a77e89ec268a56"
- integrity sha1-DGXQDih8tmPMs8s4Sad+iewmilY=
- dependencies:
- expand-range "^1.8.1"
- extend-shallow "^2.0.1"
- is-number "^2.1.0"
- repeat-string "^1.5.2"
-
-livereload-js@^2.3.0:
- version "2.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/livereload-js/-/livereload-js-2.4.0.tgz#447c31cf1ea9ab52fc20db615c5ddf678f78009c"
- integrity sha1-RHwxzx6pq1L8INthXF3fZ494AJw=
-
-load-json-file@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/load-json-file/-/load-json-file-1.1.0.tgz#956905708d58b4bab4c2261b04f59f31c99374c0"
- integrity sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=
- dependencies:
- graceful-fs "^4.1.2"
- parse-json "^2.2.0"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
- strip-bom "^2.0.0"
-
-loader-utils@1.2.3:
- version "1.2.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
- integrity sha1-H/XcaRHJ8KBiUxpMBLYJQGEIwsc=
- dependencies:
- big.js "^5.2.2"
- emojis-list "^2.0.0"
- json5 "^1.0.1"
-
-locate-path@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e"
- integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4=
- dependencies:
- p-locate "^2.0.0"
- path-exists "^3.0.0"
-
-locate-path@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/locate-path/-/locate-path-3.0.0.tgz#dbec3b3ab759758071b58fe59fc41871af21400e"
- integrity sha1-2+w7OrdZdYBxtY/ln8QYca8hQA4=
- dependencies:
- p-locate "^3.0.0"
- path-exists "^3.0.0"
-
-lodash._reinterpolate@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
- integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
-
-lodash.assignin@^4.0.9:
- version "4.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.assignin/-/lodash.assignin-4.2.0.tgz#ba8df5fb841eb0a3e8044232b0e263a8dc6a28a2"
- integrity sha1-uo31+4QesKPoBEIysOJjqNxqKKI=
-
-lodash.bind@^4.1.4:
- version "4.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.bind/-/lodash.bind-4.2.1.tgz#7ae3017e939622ac31b7d7d7dcb1b34db1690d35"
- integrity sha1-euMBfpOWIqwxt9fX3LGzTbFpDTU=
-
-lodash.chunk@^4.2.0:
- version "4.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.chunk/-/lodash.chunk-4.2.0.tgz#66e5ce1f76ed27b4303d8c6512e8d1216e8106bc"
- integrity sha1-ZuXOH3btJ7QwPYxlEujRIW6BBrw=
-
-lodash.defaults@^4.0.1:
- version "4.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.defaults/-/lodash.defaults-4.2.0.tgz#d09178716ffea4dde9e5fb7b37f6f0802274580c"
- integrity sha1-0JF4cW/+pN3p5ft7N/bwgCJ0WAw=
-
-lodash.filter@^4.4.0:
- version "4.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.filter/-/lodash.filter-4.6.0.tgz#668b1d4981603ae1cc5a6fa760143e480b4c4ace"
- integrity sha1-ZosdSYFgOuHMWm+nYBQ+SAtMSs4=
-
-lodash.flatten@^4.2.0:
- version "4.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
- integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
-
-lodash.foreach@^4.3.0:
- version "4.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.foreach/-/lodash.foreach-4.5.0.tgz#1a6a35eace401280c7f06dddec35165ab27e3e53"
- integrity sha1-Gmo16s5AEoDH8G3d7DUWWrJ+PlM=
-
-lodash.map@^4.4.0:
- version "4.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
- integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=
-
-lodash.memoize@^4.1.2:
- version "4.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
- integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
-
-lodash.merge@^4.4.0:
- version "4.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
- integrity sha1-VYqlO0O2YeGSWgr9+japoQhf5Xo=
-
-lodash.padstart@^4.6.1:
- version "4.6.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.padstart/-/lodash.padstart-4.6.1.tgz#d2e3eebff0d9d39ad50f5cbd1b52a7bce6bb611b"
- integrity sha1-0uPuv/DZ05rVD1y9G1KnvOa7YRs=
-
-lodash.pick@^4.2.1:
- version "4.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
- integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=
-
-lodash.reduce@^4.4.0:
- version "4.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.reduce/-/lodash.reduce-4.6.0.tgz#f1ab6b839299ad48f784abbf476596f03b914d3b"
- integrity sha1-8atrg5KZrUj3hKu/R2WW8DuRTTs=
-
-lodash.reject@^4.4.0:
- version "4.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.reject/-/lodash.reject-4.6.0.tgz#80d6492dc1470864bbf583533b651f42a9f52415"
- integrity sha1-gNZJLcFHCGS79YNTO2UfQqn1JBU=
-
-lodash.some@^4.4.0:
- version "4.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.some/-/lodash.some-4.6.0.tgz#1bb9f314ef6b8baded13b549169b2a945eb68e4d"
- integrity sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=
-
-lodash.sortby@^4.7.0:
- version "4.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
- integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
-
-lodash.template@^4.4.0:
- version "4.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
- integrity sha1-+XYZXPPzR9DV9SSDVp/oAxzM6Ks=
- dependencies:
- lodash._reinterpolate "^3.0.0"
- lodash.templatesettings "^4.0.0"
-
-lodash.templatesettings@^4.0.0:
- version "4.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
- integrity sha1-5IExDwSdPPbUfpEq0JMTsVTw+zM=
- dependencies:
- lodash._reinterpolate "^3.0.0"
-
-lodash.uniq@^4.5.0:
- version "4.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
- integrity sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=
-
-lodash@^4.17.12, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@~4.17.10:
- version "4.17.19"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
- integrity sha1-5I3e2+MLMyF4PFtDAfvTU7weSks=
-
-logalot@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/logalot/-/logalot-2.1.0.tgz#5f8e8c90d304edf12530951a5554abb8c5e3f552"
- integrity sha1-X46MkNME7fElMJUaVVSruMXj9VI=
- dependencies:
- figures "^1.3.5"
- squeak "^1.0.0"
-
-longest@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/longest/-/longest-1.0.1.tgz#30a0b2da38f73770e8294a0d22e6625ed77d0097"
- integrity sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=
-
-loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
- integrity sha1-ce5R+nvkyuwaY4OffmgtgTLTDK8=
- dependencies:
- js-tokens "^3.0.0 || ^4.0.0"
-
-loud-rejection@^1.0.0:
- version "1.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f"
- integrity sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=
- dependencies:
- currently-unhandled "^0.4.1"
- signal-exit "^3.0.0"
-
-lowercase-keys@1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
- integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=
-
-lowercase-keys@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
- integrity sha1-b54wtHCE2XGnyCD/FabFFnt0wm8=
-
-lpad-align@^1.0.1:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lpad-align/-/lpad-align-1.1.2.tgz#21f600ac1c3095c3c6e497ee67271ee08481fe9e"
- integrity sha1-IfYArBwwlcPG5JfuZyce4ISB/p4=
- dependencies:
- get-stdin "^4.0.1"
- indent-string "^2.1.0"
- longest "^1.0.0"
- meow "^3.3.0"
-
-lru-cache@^4.0.1:
- version "4.1.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
- integrity sha1-i75Q6oW+1ZvJ4z3KuCNe6bz0Q80=
- dependencies:
- pseudomap "^1.0.2"
- yallist "^2.1.2"
-
-make-dir@^1.0.0, make-dir@^1.2.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
- integrity sha1-ecEDO4BRW9bSTsmTPoYMp17ifww=
- dependencies:
- pify "^3.0.0"
-
-make-dir@^2.0.0, make-dir@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/make-dir/-/make-dir-2.1.0.tgz#5f0310e18b8be898cc07009295a30ae41e91e6f5"
- integrity sha1-XwMQ4YuL6JjMBwCSlaMK5B6R5vU=
- dependencies:
- pify "^4.0.1"
- semver "^5.6.0"
-
-map-cache@^0.2.2:
- version "0.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/map-cache/-/map-cache-0.2.2.tgz#c32abd0bd6525d9b051645bb4f26ac5dc98a0dbf"
- integrity sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=
-
-map-obj@^1.0.0, map-obj@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
- integrity sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=
-
-map-visit@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/map-visit/-/map-visit-1.0.0.tgz#ecdca8f13144e660f1b5bd41f12f3479d98dfb8f"
- integrity sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=
- dependencies:
- object-visit "^1.0.0"
-
-markdown-link@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/markdown-link/-/markdown-link-0.1.1.tgz#32c5c65199a6457316322d1e4229d13407c8c7cf"
- integrity sha1-MsXGUZmmRXMWMi0eQinRNAfIx88=
-
-markdown-toc@^1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/markdown-toc/-/markdown-toc-1.2.0.tgz#44a15606844490314afc0444483f9e7b1122c339"
- integrity sha1-RKFWBoREkDFK/ARESD+eexEiwzk=
- dependencies:
- concat-stream "^1.5.2"
- diacritics-map "^0.1.0"
- gray-matter "^2.1.0"
- lazy-cache "^2.0.2"
- list-item "^1.1.1"
- markdown-link "^0.1.1"
- minimist "^1.2.0"
- mixin-deep "^1.1.3"
- object.pick "^1.2.0"
- remarkable "^1.7.1"
- repeat-string "^1.6.1"
- strip-color "^0.1.0"
-
-math-random@^1.0.1:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/math-random/-/math-random-1.0.4.tgz#5dd6943c938548267016d4e34f057583080c514c"
- integrity sha1-XdaUPJOFSCZwFtTjTwV1gwgMUUw=
-
-mdn-data@2.0.4:
- version "2.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mdn-data/-/mdn-data-2.0.4.tgz#699b3c38ac6f1d728091a64650b65d388502fd5b"
- integrity sha1-aZs8OKxvHXKAkaZGULZdOIUC/Vs=
-
-mdn-data@2.0.6:
- version "2.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mdn-data/-/mdn-data-2.0.6.tgz#852dc60fcaa5daa2e8cf6c9189c440ed3e042978"
- integrity sha1-hS3GD8ql2qLoz2yRicRA7T4EKXg=
-
-media-typer@0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/media-typer/-/media-typer-0.3.0.tgz#8710d7af0aa626f8fffa1ce00168545263255748"
- integrity sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=
-
-meow@^3.3.0:
- version "3.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
- integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
- dependencies:
- camelcase-keys "^2.0.0"
- decamelize "^1.1.2"
- loud-rejection "^1.0.0"
- map-obj "^1.0.1"
- minimist "^1.1.3"
- normalize-package-data "^2.3.4"
- object-assign "^4.0.1"
- read-pkg-up "^1.0.1"
- redent "^1.0.0"
- trim-newlines "^1.0.0"
-
-merge-descriptors@1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/merge-descriptors/-/merge-descriptors-1.0.1.tgz#b00aaa556dd8b44568150ec9d1b953f3f90cbb61"
- integrity sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=
-
-merge2@^1.2.3:
- version "1.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae"
- integrity sha1-Q2iJL4hekHRVpv19xVwMnUBJkK4=
-
-methods@~1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/methods/-/methods-1.1.2.tgz#5529a4d67654134edcc5266656835b0f851afcee"
- integrity sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=
-
-microevent.ts@~0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/microevent.ts/-/microevent.ts-0.1.1.tgz#70b09b83f43df5172d0205a63025bce0f7357fa0"
- integrity sha1-cLCbg/Q99RctAgWmMCW84Pc1f6A=
-
-micromatch@^3.1.10, micromatch@^3.1.4:
- version "3.1.10"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
- integrity sha1-cIWbyVyYQJUvNZoGij/En57PrCM=
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- braces "^2.3.1"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- extglob "^2.0.4"
- fragment-cache "^0.2.1"
- kind-of "^6.0.2"
- nanomatch "^1.2.9"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.2"
-
-mime-db@1.44.0, mime-db@^1.28.0:
- version "1.44.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mime-db/-/mime-db-1.44.0.tgz#fa11c5eb0aca1334b4233cb4d52f10c5a6272f92"
- integrity sha1-+hHF6wrKEzS0Izy01S8QxaYnL5I=
-
-mime-types@^2.1.12, mime-types@~2.1.19, mime-types@~2.1.24:
- version "2.1.27"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mime-types/-/mime-types-2.1.27.tgz#47949f98e279ea53119f5722e0f34e529bec009f"
- integrity sha1-R5SfmOJ56lMRn1ci4PNOUpvsAJ8=
- dependencies:
- mime-db "1.44.0"
-
-mime@1.6.0:
- version "1.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
- integrity sha1-Ms2eXGRVO9WNGaVor0Uqz/BJgbE=
-
-mimic-fn@^1.0.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
- integrity sha1-ggyGo5M0ZA6ZUWkovQP8qIBX0CI=
-
-mimic-response@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
- integrity sha1-SSNTiHju9CBjy4o+OweYeBSHqxs=
-
-minimatch@3.0.4, minimatch@^3.0.4, minimatch@~3.0.2:
- version "3.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
- integrity sha1-UWbihkV/AzBgZL5Ul+jbsMPTIIM=
- dependencies:
- brace-expansion "^1.1.7"
-
-minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5:
- version "1.2.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602"
- integrity sha1-Z9ZgFLZqaoqqDAg8X9WN9OTpdgI=
-
-mixin-deep@^1.1.3, mixin-deep@^1.2.0:
- version "1.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
- integrity sha1-ESC0PcNZp4Xc5ltVuC4lfM9HlWY=
- dependencies:
- for-in "^1.0.2"
- is-extendable "^1.0.1"
-
-mkdirp@^0.5.1, mkdirp@^0.5.5, mkdirp@~0.5.1:
- version "0.5.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def"
- integrity sha1-2Rzv1i0UNsoPQWIOJRKI1CAJne8=
- dependencies:
- minimist "^1.2.5"
-
-ms@2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
- integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-
-ms@2.1.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
- integrity sha1-MKWGTrPrsKZvLr5tcnrwagnYbgo=
-
-ms@^2.1.1:
- version "2.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
- integrity sha1-0J0fNXtEP0kzgqjrPM0YOHKuYAk=
-
-mute-stream@0.0.7:
- version "0.0.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
- integrity sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=
-
-nan@^2.12.1:
- version "2.14.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/nan/-/nan-2.14.1.tgz#d7be34dfa3105b91494c3147089315eff8874b01"
- integrity sha1-174036MQW5FJTDFHCJMV7/iHSwE=
-
-nanomatch@^1.2.9:
- version "1.2.13"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
- integrity sha1-uHqKpPwN6P5r6IiVs4mD/yZb0Rk=
- dependencies:
- arr-diff "^4.0.0"
- array-unique "^0.3.2"
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- fragment-cache "^0.2.1"
- is-windows "^1.0.2"
- kind-of "^6.0.2"
- object.pick "^1.3.0"
- regex-not "^1.0.0"
- snapdragon "^0.8.1"
- to-regex "^3.0.1"
-
-negotiator@0.6.2:
- version "0.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
- integrity sha1-/qz3zPUlp3rpY0Q2pkiD/+yjRvs=
-
-nice-try@^1.0.4:
- version "1.0.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
- integrity sha1-ozeKdpbOfSI+iPybdkvX7xCJ42Y=
-
-node-modules-regexp@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40"
- integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=
-
-node-releases@^1.1.29, node-releases@^1.1.60:
- version "1.1.60"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/node-releases/-/node-releases-1.1.60.tgz#6948bdfce8286f0b5d0e5a88e8384e954dfe7084"
- integrity sha1-aUi9/OgobwtdDlqI6DhOlU3+cIQ=
-
-normalize-package-data@^2.3.2, normalize-package-data@^2.3.4:
- version "2.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-package-data/-/normalize-package-data-2.5.0.tgz#e66db1838b200c1dfc233225d12cb36520e234a8"
- integrity sha1-5m2xg4sgDB38IzIl0SyzZSDiNKg=
- dependencies:
- hosted-git-info "^2.1.4"
- resolve "^1.10.0"
- semver "2 || 3 || 4 || 5"
- validate-npm-package-license "^3.0.1"
-
-normalize-path@^2.1.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-path/-/normalize-path-2.1.1.tgz#1ab28b556e198363a8c1a6f7e6fa20137fe6aed9"
- integrity sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=
- dependencies:
- remove-trailing-separator "^1.0.1"
-
-normalize-path@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
- integrity sha1-Dc1p/yOhybEf0JeDFmRKA4ghamU=
-
-normalize-range@^0.1.2:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
- integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
-
-normalize-url@2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6"
- integrity sha1-g1qdoVUfom9w6SMpBpojqmV01+Y=
- dependencies:
- prepend-http "^2.0.0"
- query-string "^5.0.1"
- sort-keys "^2.0.0"
-
-normalize-url@^3.0.0:
- version "3.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559"
- integrity sha1-suHE3E98bVd0PfczpPWXjRhlBVk=
-
-npm-conf@^1.1.0:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/npm-conf/-/npm-conf-1.1.3.tgz#256cc47bd0e218c259c4e9550bf413bc2192aff9"
- integrity sha1-JWzEe9DiGMJZxOlVC/QTvCGSr/k=
- dependencies:
- config-chain "^1.1.11"
- pify "^3.0.0"
-
-npm-run-path@^2.0.0:
- version "2.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/npm-run-path/-/npm-run-path-2.0.2.tgz#35a9232dfa35d7067b4cb2ddf2357b1871536c5f"
- integrity sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=
- dependencies:
- path-key "^2.0.0"
-
-nth-check@^1.0.2, nth-check@~1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
- integrity sha1-sr0pXDfj3VijvwcAN2Zjuk2c8Fw=
- dependencies:
- boolbase "~1.0.0"
-
-num2fraction@^1.2.2:
- version "1.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede"
- integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=
-
-oauth-sign@~0.9.0:
- version "0.9.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
- integrity sha1-R6ewFrqmi1+g7PPe4IqFxnmsZFU=
-
-object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
- version "4.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
- integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
-
-object-copy@^0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object-copy/-/object-copy-0.1.0.tgz#7e7d858b781bd7c991a41ba975ed3812754e998c"
- integrity sha1-fn2Fi3gb18mRpBupde04EnVOmYw=
- dependencies:
- copy-descriptor "^0.1.0"
- define-property "^0.2.5"
- kind-of "^3.0.3"
-
-object-inspect@^1.7.0:
- version "1.8.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object-inspect/-/object-inspect-1.8.0.tgz#df807e5ecf53a609cc6bfe93eac3cc7be5b3a9d0"
- integrity sha1-34B+Xs9TpgnMa/6T6sPMe+WzqdA=
-
-object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
- integrity sha1-HEfyct8nfzsdrwYWd9nILiMixg4=
-
-object-visit@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb"
- integrity sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=
- dependencies:
- isobject "^3.0.0"
-
-object.assign@^4.1.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
- integrity sha1-lovxEA15Vrs8oIbwBvhGs7xACNo=
- dependencies:
- define-properties "^1.1.2"
- function-bind "^1.1.1"
- has-symbols "^1.0.0"
- object-keys "^1.0.11"
-
-object.getownpropertydescriptors@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.0.tgz#369bf1f9592d8ab89d712dced5cb81c7c5352649"
- integrity sha1-Npvx+VktiridcS3O1cuBx8U1Jkk=
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0-next.1"
-
-object.pick@^1.2.0, object.pick@^1.3.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object.pick/-/object.pick-1.3.0.tgz#87a10ac4c1694bd2e1cbf53591a66141fb5dd747"
- integrity sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=
- dependencies:
- isobject "^3.0.1"
-
-object.values@^1.1.0:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/object.values/-/object.values-1.1.1.tgz#68a99ecde356b7e9295a3c5e0ce31dc8c953de5e"
- integrity sha1-aKmezeNWt+kpWjxeDOMdyMlT3l4=
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.0-next.1"
- function-bind "^1.1.1"
- has "^1.0.3"
-
-on-finished@~2.3.0:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/on-finished/-/on-finished-2.3.0.tgz#20f1336481b083cd75337992a16971aa2d906947"
- integrity sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=
- dependencies:
- ee-first "1.1.1"
-
-once@^1.3.0, once@^1.3.1, once@^1.4.0:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1"
- integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
- dependencies:
- wrappy "1"
-
-onetime@^2.0.0:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
- integrity sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=
- dependencies:
- mimic-fn "^1.0.0"
-
-open@^6.3.0:
- version "6.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/open/-/open-6.4.0.tgz#5c13e96d0dc894686164f18965ecfe889ecfc8a9"
- integrity sha1-XBPpbQ3IlGhhZPGJZez+iJ7PyKk=
- dependencies:
- is-wsl "^1.1.0"
-
-optipng-bin@^5.0.0:
- version "5.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/optipng-bin/-/optipng-bin-5.1.0.tgz#a7c7ab600a3ab5a177dae2f94c2d800aa386b5a9"
- integrity sha1-p8erYAo6taF32uL5TC2ACqOGtak=
- dependencies:
- bin-build "^3.0.0"
- bin-wrapper "^4.0.0"
- logalot "^2.0.0"
-
-original@^1.0.0:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/original/-/original-1.0.2.tgz#e442a61cffe1c5fd20a65f3261c26663b303f25f"
- integrity sha1-5EKmHP/hxf0gpl8yYcJmY7MD8l8=
- dependencies:
- url-parse "^1.4.3"
-
-os-filter-obj@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16"
- integrity sha1-HAti1fOiRCdJotE55t3e5ugdjRY=
- dependencies:
- arch "^2.1.0"
-
-os-tmpdir@~1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
- integrity sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=
-
-p-cancelable@^0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-cancelable/-/p-cancelable-0.3.0.tgz#b9e123800bcebb7ac13a479be195b507b98d30fa"
- integrity sha1-ueEjgAvOu3rBOkeb4ZW1B7mNMPo=
-
-p-cancelable@^0.4.0:
- version "0.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
- integrity sha1-NfNj1n1SCByNlYXje8zrfgu8sqA=
-
-p-event@^1.0.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-event/-/p-event-1.3.0.tgz#8e6b4f4f65c72bc5b6fe28b75eda874f96a4a085"
- integrity sha1-jmtPT2XHK8W2/ii3XtqHT5akoIU=
- dependencies:
- p-timeout "^1.1.1"
-
-p-event@^2.1.0:
- version "2.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-event/-/p-event-2.3.1.tgz#596279ef169ab2c3e0cae88c1cfbb08079993ef6"
- integrity sha1-WWJ57xaassPgyuiMHPuwgHmZPvY=
- dependencies:
- p-timeout "^2.0.1"
-
-p-finally@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
- integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
-
-p-is-promise@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
- integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=
-
-p-limit@^1.1.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
- integrity sha1-uGvV8MJWkJEcdZD8v8IBDVSzzLg=
- dependencies:
- p-try "^1.0.0"
-
-p-limit@^2.0.0:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1"
- integrity sha1-PdM8ZHohT9//2DWTPrCG2g3CHbE=
- dependencies:
- p-try "^2.0.0"
-
-p-locate@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
- integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM=
- dependencies:
- p-limit "^1.1.0"
-
-p-locate@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-locate/-/p-locate-3.0.0.tgz#322d69a05c0264b25997d9f40cd8a891ab0064a4"
- integrity sha1-Mi1poFwCZLJZl9n0DNiokasAZKQ=
- dependencies:
- p-limit "^2.0.0"
-
-p-map-series@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca"
- integrity sha1-v5j+V1cFZYqeE1G++4WuTB8Hvco=
- dependencies:
- p-reduce "^1.0.0"
-
-p-pipe@^1.1.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-pipe/-/p-pipe-1.2.0.tgz#4b1a11399a11520a67790ee5a0c1d5881d6befe9"
- integrity sha1-SxoROZoRUgpneQ7loMHViB1r7+k=
-
-p-reduce@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-reduce/-/p-reduce-1.0.0.tgz#18c2b0dd936a4690a529f8231f58a0fdb6a47dfa"
- integrity sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=
-
-p-timeout@^1.1.1:
- version "1.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-timeout/-/p-timeout-1.2.1.tgz#5eb3b353b7fce99f101a1038880bb054ebbea386"
- integrity sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=
- dependencies:
- p-finally "^1.0.0"
-
-p-timeout@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038"
- integrity sha1-2N0ZeVldLcATnh/ka4tkbLPN8Dg=
- dependencies:
- p-finally "^1.0.0"
-
-p-try@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
- integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M=
-
-p-try@^2.0.0:
- version "2.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6"
- integrity sha1-yyhoVA4xPWHeWPr741zpAE1VQOY=
-
-parse-json@^2.2.0:
- version "2.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/parse-json/-/parse-json-2.2.0.tgz#f480f40434ef80741f8469099f8dea18f55a4dc9"
- integrity sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=
- dependencies:
- error-ex "^1.2.0"
-
-parse-json@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/parse-json/-/parse-json-4.0.0.tgz#be35f5425be1f7f6c747184f98a788cb99477ee0"
- integrity sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=
- dependencies:
- error-ex "^1.3.1"
- json-parse-better-errors "^1.0.1"
-
-parseurl@~1.3.3:
- version "1.3.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
- integrity sha1-naGee+6NEt/wUT7Vt2lXeTvC6NQ=
-
-pascalcase@^0.1.1:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
- integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-
-path-dirname@^1.0.0:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-dirname/-/path-dirname-1.0.2.tgz#cc33d24d525e099a5388c0336c6e32b9160609e0"
- integrity sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=
-
-path-exists@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-exists/-/path-exists-2.1.0.tgz#0feb6c64f0fc518d9a754dd5efb62c7022761f4b"
- integrity sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=
- dependencies:
- pinkie-promise "^2.0.0"
-
-path-exists@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
- integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-
-path-is-absolute@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
- integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
-
-path-key@^2.0.0, path-key@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
- integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-
-path-parse@^1.0.6:
- version "1.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
- integrity sha1-1i27VnlAXXLEc37FhgDp3c8G0kw=
-
-path-to-regexp@0.1.7:
- version "0.1.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-to-regexp/-/path-to-regexp-0.1.7.tgz#df604178005f522f15eb4490e7247a1bfaa67f8c"
- integrity sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=
-
-path-type@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-type/-/path-type-1.1.0.tgz#59c44f7ee491da704da415da5a4070ba4f8fe441"
- integrity sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=
- dependencies:
- graceful-fs "^4.1.2"
- pify "^2.0.0"
- pinkie-promise "^2.0.0"
-
-path-type@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/path-type/-/path-type-3.0.0.tgz#cef31dc8e0a1a3bb0d105c0cd97cf3bf47f4e36f"
- integrity sha1-zvMdyOCho7sNEFwM2Xzzv0f0428=
- dependencies:
- pify "^3.0.0"
-
-pend@~1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pend/-/pend-1.2.0.tgz#7a57eb550a6783f9115331fcf4663d5c8e007a50"
- integrity sha1-elfrVQpng/kRUzH89GY9XI4AelA=
-
-performance-now@^2.1.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/performance-now/-/performance-now-2.1.0.tgz#6309f4e0e5fa913ec1c69307ae364b4b377c9e7b"
- integrity sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=
-
-pify@^2.0.0, pify@^2.2.0, pify@^2.3.0:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
- integrity sha1-7RQaasBDqEnqWISY59yosVMw6Qw=
-
-pify@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pify/-/pify-3.0.0.tgz#e5a4acd2c101fdf3d9a4d07f0dbc4db49dd28176"
- integrity sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=
-
-pify@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pify/-/pify-4.0.1.tgz#4b2cd25c50d598735c50292224fd8c6df41e3231"
- integrity sha1-SyzSXFDVmHNcUCkiJP2MbfQeMjE=
-
-pinkie-promise@^2.0.0:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pinkie-promise/-/pinkie-promise-2.0.1.tgz#2135d6dfa7a358c069ac9b178776288228450ffa"
- integrity sha1-ITXW36ejWMBprJsXh3YogihFD/o=
- dependencies:
- pinkie "^2.0.0"
-
-pinkie@^2.0.0:
- version "2.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pinkie/-/pinkie-2.0.4.tgz#72556b80cfa0d48a974e80e77248e80ed4f7f870"
- integrity sha1-clVrgM+g1IqXToDnckjoDtT3+HA=
-
-pirates@^4.0.0:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87"
- integrity sha1-ZDqSyviUVm+RsrmG0sZpUKji+4c=
- dependencies:
- node-modules-regexp "^1.0.0"
-
-pkg-dir@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pkg-dir/-/pkg-dir-3.0.0.tgz#2749020f239ed990881b1f71210d51eb6523bea3"
- integrity sha1-J0kCDyOe2ZCIGx9xIQ1R62UjvqM=
- dependencies:
- find-up "^3.0.0"
-
-pkg-up@2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f"
- integrity sha1-yBmscoBZpGHKscOImivjxJoATX8=
- dependencies:
- find-up "^2.1.0"
-
-portfinder@^1.0.25:
- version "1.0.28"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/portfinder/-/portfinder-1.0.28.tgz#67c4622852bd5374dd1dd900f779f53462fac778"
- integrity sha1-Z8RiKFK9U3TdHdkA93n1NGL6x3g=
- dependencies:
- async "^2.6.2"
- debug "^3.1.1"
- mkdirp "^0.5.5"
-
-posix-character-classes@^0.1.0:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab"
- integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=
-
-postcss-calc@^7.0.1:
- version "7.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-calc/-/postcss-calc-7.0.3.tgz#d65cca92a3c52bf27ad37a5f732e0587b74f1623"
- integrity sha1-1lzKkqPFK/J603pfcy4Fh7dPFiM=
- dependencies:
- postcss "^7.0.27"
- postcss-selector-parser "^6.0.2"
- postcss-value-parser "^4.0.2"
-
-postcss-colormin@^4.0.3:
- version "4.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-colormin/-/postcss-colormin-4.0.3.tgz#ae060bce93ed794ac71264f08132d550956bd381"
- integrity sha1-rgYLzpPteUrHEmTwgTLVUJVr04E=
- dependencies:
- browserslist "^4.0.0"
- color "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-convert-values@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz#ca3813ed4da0f812f9d43703584e449ebe189a7f"
- integrity sha1-yjgT7U2g+BL51DcDWE5Enr4Ymn8=
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-discard-comments@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz#1fbabd2c246bff6aaad7997b2b0918f4d7af4033"
- integrity sha1-H7q9LCRr/2qq15l7KwkY9NevQDM=
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-duplicates@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz#3fe133cd3c82282e550fc9b239176a9207b784eb"
- integrity sha1-P+EzzTyCKC5VD8myORdqkge3hOs=
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-empty@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz#c8c951e9f73ed9428019458444a02ad90bb9f765"
- integrity sha1-yMlR6fc+2UKAGUWERKAq2Qu592U=
- dependencies:
- postcss "^7.0.0"
-
-postcss-discard-overridden@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz#652aef8a96726f029f5e3e00146ee7a4e755ff57"
- integrity sha1-ZSrvipZybwKfXj4AFG7npOdV/1c=
- dependencies:
- postcss "^7.0.0"
-
-postcss-merge-longhand@^4.0.11:
- version "4.0.11"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz#62f49a13e4a0ee04e7b98f42bb16062ca2549e24"
- integrity sha1-YvSaE+Sg7gTnuY9CuxYGLKJUniQ=
- dependencies:
- css-color-names "0.0.4"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- stylehacks "^4.0.0"
-
-postcss-merge-rules@^4.0.3:
- version "4.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz#362bea4ff5a1f98e4075a713c6cb25aefef9a650"
- integrity sha1-NivqT/Wh+Y5AdacTxsslrv75plA=
- dependencies:
- browserslist "^4.0.0"
- caniuse-api "^3.0.0"
- cssnano-util-same-parent "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
- vendors "^1.0.0"
-
-postcss-minify-font-values@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz#cd4c344cce474343fac5d82206ab2cbcb8afd5a6"
- integrity sha1-zUw0TM5HQ0P6xdgiBqssvLiv1aY=
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-minify-gradients@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz#93b29c2ff5099c535eecda56c4aa6e665a663471"
- integrity sha1-k7KcL/UJnFNe7NpWxKpuZlpmNHE=
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- is-color-stop "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-minify-params@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz#6b9cef030c11e35261f95f618c90036d680db874"
- integrity sha1-a5zvAwwR41Jh+V9hjJADbWgNuHQ=
- dependencies:
- alphanum-sort "^1.0.0"
- browserslist "^4.0.0"
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- uniqs "^2.0.0"
-
-postcss-minify-selectors@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz#e2e5eb40bfee500d0cd9243500f5f8ea4262fbd8"
- integrity sha1-4uXrQL/uUA0M2SQ1APX46kJi+9g=
- dependencies:
- alphanum-sort "^1.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
-
-postcss-normalize-charset@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-charset/-/postcss-normalize-charset-4.0.1.tgz#8b35add3aee83a136b0471e0d59be58a50285dd4"
- integrity sha1-izWt067oOhNrBHHg1ZvlilAoXdQ=
- dependencies:
- postcss "^7.0.0"
-
-postcss-normalize-display-values@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz#0dbe04a4ce9063d4667ed2be476bb830c825935a"
- integrity sha1-Db4EpM6QY9RmftK+R2u4MMglk1o=
- dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-positions@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz#05f757f84f260437378368a91f8932d4b102917f"
- integrity sha1-BfdX+E8mBDc3g2ipH4ky1LECkX8=
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-repeat-style@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz#c4ebbc289f3991a028d44751cbdd11918b17910c"
- integrity sha1-xOu8KJ85kaAo1EdRy90RkYsXkQw=
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-string@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz#cd44c40ab07a0c7a36dc5e99aace1eca4ec2690c"
- integrity sha1-zUTECrB6DHo23F6Zqs4eyk7CaQw=
- dependencies:
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-timing-functions@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz#8e009ca2a3949cdaf8ad23e6b6ab99cb5e7d28d9"
- integrity sha1-jgCcoqOUnNr4rSPmtquZy159KNk=
- dependencies:
- cssnano-util-get-match "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-unicode@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz#841bd48fdcf3019ad4baa7493a3d363b52ae1cfb"
- integrity sha1-hBvUj9zzAZrUuqdJOj02O1KuHPs=
- dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-url@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz#10e437f86bc7c7e58f7b9652ed878daaa95faae1"
- integrity sha1-EOQ3+GvHx+WPe5ZS7YeNqqlfquE=
- dependencies:
- is-absolute-url "^2.0.0"
- normalize-url "^3.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-normalize-whitespace@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz#bf1d4070fe4fcea87d1348e825d8cc0c5faa7d82"
- integrity sha1-vx1AcP5Pzqh9E0joJdjMDF+qfYI=
- dependencies:
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-ordered-values@^4.1.2:
- version "4.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz#0cf75c820ec7d5c4d280189559e0b571ebac0eee"
- integrity sha1-DPdcgg7H1cTSgBiVWeC1ceusDu4=
- dependencies:
- cssnano-util-get-arguments "^4.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-reduce-initial@^4.0.3:
- version "4.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz#7fd42ebea5e9c814609639e2c2e84ae270ba48df"
- integrity sha1-f9QuvqXpyBRgljniwuhK4nC6SN8=
- dependencies:
- browserslist "^4.0.0"
- caniuse-api "^3.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
-
-postcss-reduce-transforms@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz#17efa405eacc6e07be3414a5ca2d1074681d4e29"
- integrity sha1-F++kBerMbge+NBSlyi0QdGgdTik=
- dependencies:
- cssnano-util-get-match "^4.0.0"
- has "^1.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
-
-postcss-selector-parser@^3.0.0:
- version "3.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-selector-parser/-/postcss-selector-parser-3.1.2.tgz#b310f5c4c0fdaf76f94902bbaa30db6aa84f5270"
- integrity sha1-sxD1xMD9r3b5SQK7qjDbaqhPUnA=
- dependencies:
- dot-prop "^5.2.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-selector-parser@^6.0.2:
- version "6.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
- integrity sha1-k0z3mdAWyDQRhZ4J3Oyt4BKG7Fw=
- dependencies:
- cssesc "^3.0.0"
- indexes-of "^1.0.1"
- uniq "^1.0.1"
-
-postcss-svgo@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-svgo/-/postcss-svgo-4.0.2.tgz#17b997bc711b333bab143aaed3b8d3d6e3d38258"
- integrity sha1-F7mXvHEbMzurFDqu07jT1uPTglg=
- dependencies:
- is-svg "^3.0.0"
- postcss "^7.0.0"
- postcss-value-parser "^3.0.0"
- svgo "^1.0.0"
-
-postcss-unique-selectors@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz#9446911f3289bfd64c6d680f073c03b1f9ee4bac"
- integrity sha1-lEaRHzKJv9ZMbWgPBzwDsfnuS6w=
- dependencies:
- alphanum-sort "^1.0.0"
- postcss "^7.0.0"
- uniqs "^2.0.0"
-
-postcss-value-parser@^3.0.0:
- version "3.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
- integrity sha1-n/giVH4okyE88cMO+lGsX9G6goE=
-
-postcss-value-parser@^4.0.2, postcss-value-parser@^4.1.0:
- version "4.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb"
- integrity sha1-RD9qIM7WSBor2k+oUypuVdeJoss=
-
-postcss@^7.0.0, postcss@^7.0.1, postcss@^7.0.23, postcss@^7.0.27, postcss@^7.0.32:
- version "7.0.32"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/postcss/-/postcss-7.0.32.tgz#4310d6ee347053da3433db2be492883d62cec59d"
- integrity sha1-QxDW7jRwU9o0M9sr5JKIPWLOxZ0=
- dependencies:
- chalk "^2.4.2"
- source-map "^0.6.1"
- supports-color "^6.1.0"
-
-prepend-http@^1.0.1:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/prepend-http/-/prepend-http-1.0.4.tgz#d4f4562b0ce3696e41ac52d0e002e57a635dc6dc"
- integrity sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=
-
-prepend-http@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
- integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
-
-prismjs@^1.17.1:
- version "1.21.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/prismjs/-/prismjs-1.21.0.tgz#36c086ec36b45319ec4218ee164c110f9fc015a3"
- integrity sha1-NsCG7Da0UxnsQhjuFkwRD5/AFaM=
- optionalDependencies:
- clipboard "^2.0.0"
-
-process-nextick-args@~2.0.0:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
- integrity sha1-eCDZsWEgzFXKmud5JoCufbptf+I=
-
-prop-types@^15.6.2:
- version "15.7.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/prop-types/-/prop-types-15.7.2.tgz#52c41e75b8c87e72b9d9360e0206b99dcbffa6c5"
- integrity sha1-UsQedbjIfnK52TYOAga5ncv/psU=
- dependencies:
- loose-envify "^1.4.0"
- object-assign "^4.1.1"
- react-is "^16.8.1"
-
-proto-list@~1.2.1:
- version "1.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
- integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
-
-proxy-addr@~2.0.5:
- version "2.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/proxy-addr/-/proxy-addr-2.0.6.tgz#fdc2336505447d3f2f2c638ed272caf614bbb2bf"
- integrity sha1-/cIzZQVEfT8vLGOO0nLK9hS7sr8=
- dependencies:
- forwarded "~0.1.2"
- ipaddr.js "1.9.1"
-
-pseudomap@^1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pseudomap/-/pseudomap-1.0.2.tgz#f052a28da70e618917ef0a8ac34c1ae5a68286b3"
- integrity sha1-8FKijacOYYkX7wqKw0wa5aaChrM=
-
-psl@^1.1.28:
- version "1.8.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24"
- integrity sha1-kyb4vPsBOtzABf3/BWrM4CDlHCQ=
-
-pump@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/pump/-/pump-3.0.0.tgz#b4a2116815bde2f4e1ea602354e8c75565107a64"
- integrity sha1-tKIRaBW94vTh6mAjVOjHVWUQemQ=
- dependencies:
- end-of-stream "^1.1.0"
- once "^1.3.1"
-
-punycode@^2.1.0, punycode@^2.1.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
- integrity sha1-tYsBCsQMIsVldhbI0sLALHv0eew=
-
-q@^1.1.2:
- version "1.5.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
- integrity sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=
-
-qs@6.7.0:
- version "6.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
- integrity sha1-QdwaAV49WB8WIXdr4xr7KHapsbw=
-
-qs@^6.4.0:
- version "6.9.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/qs/-/qs-6.9.4.tgz#9090b290d1f91728d3c22e54843ca44aea5ab687"
- integrity sha1-kJCykNH5FyjTwi5UhDykSupatoc=
-
-qs@~6.5.2:
- version "6.5.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
- integrity sha1-yzroBuh0BERYTvFUzo7pjUA/PjY=
-
-query-string@^5.0.1:
- version "5.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
- integrity sha1-p4wBK3HBfgXy4/ojGd0zBoLvs8s=
- dependencies:
- decode-uri-component "^0.2.0"
- object-assign "^4.1.0"
- strict-uri-encode "^1.0.0"
-
-querystringify@^2.1.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/querystringify/-/querystringify-2.1.1.tgz#60e5a5fd64a7f8bfa4d2ab2ed6fdf4c85bad154e"
- integrity sha1-YOWl/WSn+L+k0qsu1v30yFutFU4=
-
-randomatic@^3.0.0:
- version "3.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/randomatic/-/randomatic-3.1.1.tgz#b776efc59375984e36c537b2f51a1f0aff0da1ed"
- integrity sha1-t3bvxZN1mE42xTey9RofCv8Noe0=
- dependencies:
- is-number "^4.0.0"
- kind-of "^6.0.0"
- math-random "^1.0.1"
-
-range-parser@~1.2.1:
- version "1.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
- integrity sha1-PPNwI9GZ4cJNGlW4SADC8+ZGgDE=
-
-raw-body@2.4.0:
- version "2.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
- integrity sha1-oc5vucm8NWylLoklarWQWeE9AzI=
- dependencies:
- bytes "3.1.0"
- http-errors "1.7.2"
- iconv-lite "0.4.24"
- unpipe "1.0.0"
-
-raw-body@~1.1.0:
- version "1.1.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425"
- integrity sha1-HQJ8K/oRasxmI7yo8AAWVyqH1CU=
- dependencies:
- bytes "1"
- string_decoder "0.10"
-
-react-dev-utils@^9.1.0:
- version "9.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/react-dev-utils/-/react-dev-utils-9.1.0.tgz#3ad2bb8848a32319d760d0a84c56c14bdaae5e81"
- integrity sha1-OtK7iEijIxnXYNCoTFbBS9quXoE=
- dependencies:
- "@babel/code-frame" "7.5.5"
- address "1.1.2"
- browserslist "4.7.0"
- chalk "2.4.2"
- cross-spawn "6.0.5"
- detect-port-alt "1.1.6"
- escape-string-regexp "1.0.5"
- filesize "3.6.1"
- find-up "3.0.0"
- fork-ts-checker-webpack-plugin "1.5.0"
- global-modules "2.0.0"
- globby "8.0.2"
- gzip-size "5.1.1"
- immer "1.10.0"
- inquirer "6.5.0"
- is-root "2.1.0"
- loader-utils "1.2.3"
- open "^6.3.0"
- pkg-up "2.0.0"
- react-error-overlay "^6.0.3"
- recursive-readdir "2.2.2"
- shell-quote "1.7.2"
- sockjs-client "1.4.0"
- strip-ansi "5.2.0"
- text-table "0.2.0"
-
-react-dom@^16.8.4:
- version "16.13.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/react-dom/-/react-dom-16.13.1.tgz#c1bd37331a0486c078ee54c4740720993b2e0e7f"
- integrity sha1-wb03MxoEhsB47lTEdAcgmTsuDn8=
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- prop-types "^15.6.2"
- scheduler "^0.19.1"
-
-react-error-overlay@^6.0.3:
- version "6.0.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/react-error-overlay/-/react-error-overlay-6.0.7.tgz#1dcfb459ab671d53f660a991513cb2f0a0553108"
- integrity sha1-Hc+0WatnHVP2YKmRUTyy8KBVMQg=
-
-react-is@^16.8.1:
- version "16.13.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4"
- integrity sha1-eJcppNw23imZ3BVt1sHZwYzqVqQ=
-
-react@^16.8.4:
- version "16.13.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/react/-/react-16.13.1.tgz#2e818822f1a9743122c063d6410d85c1e3afe48e"
- integrity sha1-LoGIIvGpdDEiwGPWQQ2FweOv5I4=
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
- prop-types "^15.6.2"
-
-read-pkg-up@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/read-pkg-up/-/read-pkg-up-1.0.1.tgz#9d63c13276c065918d57f002a57f40a1b643fb02"
- integrity sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=
- dependencies:
- find-up "^1.0.0"
- read-pkg "^1.0.0"
-
-read-pkg@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/read-pkg/-/read-pkg-1.1.0.tgz#f5ffaa5ecd29cb31c0474bca7d756b6bb29e3f28"
- integrity sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=
- dependencies:
- load-json-file "^1.0.0"
- normalize-package-data "^2.3.2"
- path-type "^1.0.0"
-
-readable-stream@^2.0.0, readable-stream@^2.0.2, readable-stream@^2.2.2, readable-stream@^2.3.0, readable-stream@^2.3.5, readable-stream@~2.3.6:
- version "2.3.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/readable-stream/-/readable-stream-2.3.7.tgz#1eca1cf711aef814c04f62252a36a62f6cb23b57"
- integrity sha1-Hsoc9xGu+BTAT2IlKjamL2yyO1c=
- dependencies:
- core-util-is "~1.0.0"
- inherits "~2.0.3"
- isarray "~1.0.0"
- process-nextick-args "~2.0.0"
- safe-buffer "~5.1.1"
- string_decoder "~1.1.1"
- util-deprecate "~1.0.1"
-
-readable-stream@^3.1.1:
- version "3.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198"
- integrity sha1-M3u9o63AcGvT4CRCaihtS0sskZg=
- dependencies:
- inherits "^2.0.3"
- string_decoder "^1.1.1"
- util-deprecate "^1.0.1"
-
-readdirp@^2.2.1:
- version "2.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/readdirp/-/readdirp-2.2.1.tgz#0e87622a3325aa33e892285caf8b4e846529a525"
- integrity sha1-DodiKjMlqjPokihcr4tOhGUppSU=
- dependencies:
- graceful-fs "^4.1.11"
- micromatch "^3.1.10"
- readable-stream "^2.0.2"
-
-rechoir@^0.6.2:
- version "0.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384"
- integrity sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=
- dependencies:
- resolve "^1.1.6"
-
-recursive-readdir@2.2.2:
- version "2.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
- integrity sha1-mUb7MnThYo3m42svZxSVO0hFCU8=
- dependencies:
- minimatch "3.0.4"
-
-redent@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/redent/-/redent-1.0.0.tgz#cf916ab1fd5f1f16dfb20822dd6ec7f730c2afde"
- integrity sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=
- dependencies:
- indent-string "^2.1.0"
- strip-indent "^1.0.1"
-
-regenerate-unicode-properties@^8.2.0:
- version "8.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec"
- integrity sha1-5d5xEdZV57pgwFfb6f83yH5lzew=
- dependencies:
- regenerate "^1.4.0"
-
-regenerate@^1.4.0:
- version "1.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regenerate/-/regenerate-1.4.1.tgz#cad92ad8e6b591773485fbe05a485caf4f457e6f"
- integrity sha1-ytkq2Oa1kXc0hfvgWkhcr09Ffm8=
-
-regenerator-runtime@^0.13.4:
- version "0.13.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regenerator-runtime/-/regenerator-runtime-0.13.7.tgz#cac2dacc8a1ea675feaabaeb8ae833898ae46f55"
- integrity sha1-ysLazIoepnX+qrrriugziYrkb1U=
-
-regenerator-transform@^0.14.2:
- version "0.14.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regenerator-transform/-/regenerator-transform-0.14.5.tgz#c98da154683671c9c4dcb16ece736517e1b7feb4"
- integrity sha1-yY2hVGg2ccnE3LFuznNlF+G3/rQ=
- dependencies:
- "@babel/runtime" "^7.8.4"
-
-regex-not@^1.0.0, regex-not@^1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
- integrity sha1-H07OJ+ALC2XgJHpoEOaoXYOldSw=
- dependencies:
- extend-shallow "^3.0.2"
- safe-regex "^1.1.0"
-
-regexpu-core@^4.7.0:
- version "4.7.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938"
- integrity sha1-/L9FjFBDGwu3tF1pZ7gZLZHz2Tg=
- dependencies:
- regenerate "^1.4.0"
- regenerate-unicode-properties "^8.2.0"
- regjsgen "^0.5.1"
- regjsparser "^0.6.4"
- unicode-match-property-ecmascript "^1.0.4"
- unicode-match-property-value-ecmascript "^1.2.0"
-
-regjsgen@^0.5.1:
- version "0.5.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733"
- integrity sha1-kv8pX7He7L9uzaslQ9IH6RqjNzM=
-
-regjsparser@^0.6.4:
- version "0.6.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272"
- integrity sha1-p2n4aEMIQBpm6bUp0kNv9NBmYnI=
- dependencies:
- jsesc "~0.5.0"
-
-remarkable@^1.7.1:
- version "1.7.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/remarkable/-/remarkable-1.7.4.tgz#19073cb960398c87a7d6546eaa5e50d2022fcd00"
- integrity sha1-GQc8uWA5jIen1lRuql5Q0gIvzQA=
- dependencies:
- argparse "^1.0.10"
- autolinker "~0.28.0"
-
-remarkable@^2.0.0:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/remarkable/-/remarkable-2.0.1.tgz#280ae6627384dfb13d98ee3995627ca550a12f31"
- integrity sha1-KArmYnOE37E9mO45lWJ8pVChLzE=
- dependencies:
- argparse "^1.0.10"
- autolinker "^3.11.0"
-
-remove-trailing-separator@^1.0.1:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz#c24bce2a283adad5bc3f58e0d48249b92379d8ef"
- integrity sha1-wkvOKig62tW8P1jg1IJJuSN52O8=
-
-repeat-element@^1.1.2:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/repeat-element/-/repeat-element-1.1.3.tgz#782e0d825c0c5a3bb39731f84efee6b742e6b1ce"
- integrity sha1-eC4NglwMWjuzlzH4Tv7mt0Lmsc4=
-
-repeat-string@^1.5.2, repeat-string@^1.6.1:
- version "1.6.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/repeat-string/-/repeat-string-1.6.1.tgz#8dcae470e1c88abc2d600fff4a776286da75e637"
- integrity sha1-jcrkcOHIirwtYA//Sndihtp15jc=
-
-repeating@^2.0.0:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/repeating/-/repeating-2.0.1.tgz#5214c53a926d3552707527fbab415dbc08d06dda"
- integrity sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=
- dependencies:
- is-finite "^1.0.0"
-
-replace-ext@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/replace-ext/-/replace-ext-1.0.1.tgz#2d6d996d04a15855d967443631dd5f77825b016a"
- integrity sha1-LW2ZbQShWFXZZ0Q2Md1fd4JbAWo=
-
-request@^2.53.0, request@^2.88.0:
- version "2.88.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/request/-/request-2.88.2.tgz#d73c918731cb5a87da047e207234146f664d12b3"
- integrity sha1-1zyRhzHLWofaBH4gcjQUb2ZNErM=
- dependencies:
- aws-sign2 "~0.7.0"
- aws4 "^1.8.0"
- caseless "~0.12.0"
- combined-stream "~1.0.6"
- extend "~3.0.2"
- forever-agent "~0.6.1"
- form-data "~2.3.2"
- har-validator "~5.1.3"
- http-signature "~1.2.0"
- is-typedarray "~1.0.0"
- isstream "~0.1.2"
- json-stringify-safe "~5.0.1"
- mime-types "~2.1.19"
- oauth-sign "~0.9.0"
- performance-now "^2.1.0"
- qs "~6.5.2"
- safe-buffer "^5.1.2"
- tough-cookie "~2.5.0"
- tunnel-agent "^0.6.0"
- uuid "^3.3.2"
-
-requires-port@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff"
- integrity sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=
-
-resolve-from@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/resolve-from/-/resolve-from-3.0.0.tgz#b22c7af7d9d6881bc8b6e653335eebcb0a188748"
- integrity sha1-six699nWiBvItuZTM17rywoYh0g=
-
-resolve-url@^0.2.1:
- version "0.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
- integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-
-resolve@^1.1.6, resolve@^1.10.0, resolve@^1.3.2:
- version "1.17.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/resolve/-/resolve-1.17.0.tgz#b25941b54968231cc2d1bb76a79cb7f2c0bf8444"
- integrity sha1-sllBtUloIxzC0bt2p5y38sC/hEQ=
- dependencies:
- path-parse "^1.0.6"
-
-responselike@1.0.2:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
- integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
- dependencies:
- lowercase-keys "^1.0.0"
-
-restore-cursor@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/restore-cursor/-/restore-cursor-2.0.0.tgz#9f7ee287f82fd326d4fd162923d62129eee0dfaf"
- integrity sha1-n37ih/gv0ybU/RYpI9YhKe7g368=
- dependencies:
- onetime "^2.0.0"
- signal-exit "^3.0.2"
-
-ret@~0.1.10:
- version "0.1.15"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
- integrity sha1-uKSCXVvbH8P29Twrwz+BOIaBx7w=
-
-rgb-regex@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/rgb-regex/-/rgb-regex-1.0.1.tgz#c0e0d6882df0e23be254a475e8edd41915feaeb1"
- integrity sha1-wODWiC3w4jviVKR16O3UGRX+rrE=
-
-rgba-regex@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/rgba-regex/-/rgba-regex-1.0.0.tgz#43374e2e2ca0968b0ef1523460b7d730ff22eeb3"
- integrity sha1-QzdOLiyglosO8VI0YLfXMP8i7rM=
-
-rimraf@^2.5.4:
- version "2.7.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/rimraf/-/rimraf-2.7.1.tgz#35797f13a7fdadc566142c29d4f07ccad483e3ec"
- integrity sha1-NXl/E6f9rcVmFCwp1PB8ytSD4+w=
- dependencies:
- glob "^7.1.3"
-
-run-async@^2.2.0:
- version "2.4.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/run-async/-/run-async-2.4.1.tgz#8440eccf99ea3e70bd409d49aab88e10c189a455"
- integrity sha1-hEDsz5nqPnC9QJ1JqriOEMGJpFU=
-
-rxjs@^6.4.0:
- version "6.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/rxjs/-/rxjs-6.6.2.tgz#8096a7ac03f2cc4fe5860ef6e572810d9e01c0d2"
- integrity sha1-gJanrAPyzE/lhg725XKBDZ4BwNI=
- dependencies:
- tslib "^1.9.0"
-
-safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
- version "5.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
- integrity sha1-mR7GnSluAxN0fVm9/St0XDX4go0=
-
-safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.2.0:
- version "5.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6"
- integrity sha1-Hq+fqb2x/dTsdfWPnNtOa3gn7sY=
-
-safe-json-parse@~1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"
- integrity sha1-PnZyPjjf3aE8mx0poeB//uSzC1c=
-
-safe-regex@^1.1.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/safe-regex/-/safe-regex-1.1.0.tgz#40a3669f3b077d1e943d44629e157dd48023bf2e"
- integrity sha1-QKNmnzsHfR6UPURinhV91IAjvy4=
- dependencies:
- ret "~0.1.10"
-
-"safer-buffer@>= 2.1.2 < 3", safer-buffer@^2.0.2, safer-buffer@^2.1.0, safer-buffer@~2.1.0:
- version "2.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
- integrity sha1-RPoWGwGHuVSd2Eu5GAL5vYOFzWo=
-
-sax@^1.2.4, sax@~1.2.4:
- version "1.2.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
- integrity sha1-KBYjTiN4vdxOU1T6tcqold9xANk=
-
-scheduler@^0.19.1:
- version "0.19.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/scheduler/-/scheduler-0.19.1.tgz#4f3e2ed2c1a7d65681f4c854fa8c5a1ccb40f196"
- integrity sha1-Tz4u0sGn1laB9MhU+oxaHMtA8ZY=
- dependencies:
- loose-envify "^1.1.0"
- object-assign "^4.1.1"
-
-seek-bzip@^1.0.5:
- version "1.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/seek-bzip/-/seek-bzip-1.0.6.tgz#35c4171f55a680916b52a07859ecf3b5857f21c4"
- integrity sha1-NcQXH1WmgJFrUqB4WezztYV/IcQ=
- dependencies:
- commander "^2.8.1"
-
-select@^1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
- integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
-
-semver-regex@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338"
- integrity sha1-qTwsWERTmncCMzeRB7OMe0rJ0zg=
-
-semver-truncate@^1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/semver-truncate/-/semver-truncate-1.1.2.tgz#57f41de69707a62709a7e0104ba2117109ea47e8"
- integrity sha1-V/Qd5pcHpicJp+AQS6IRcQnqR+g=
- dependencies:
- semver "^5.3.0"
-
-"semver@2 || 3 || 4 || 5", semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.6.0:
- version "5.7.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7"
- integrity sha1-qVT5Ma66UI0we78Gnv8MAclhFvc=
-
-semver@7.0.0:
- version "7.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e"
- integrity sha1-XzyjV2HkfgWyBsba/yz4FPAxa44=
-
-send@0.17.1:
- version "0.17.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
- integrity sha1-wdiwWfeQD3Rm3Uk4vcROEd2zdsg=
- dependencies:
- debug "2.6.9"
- depd "~1.1.2"
- destroy "~1.0.4"
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- etag "~1.8.1"
- fresh "0.5.2"
- http-errors "~1.7.2"
- mime "1.6.0"
- ms "2.1.1"
- on-finished "~2.3.0"
- range-parser "~1.2.1"
- statuses "~1.5.0"
-
-serve-static@1.14.1:
- version "1.14.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
- integrity sha1-Zm5jbcTwEPfvKZcKiKZ0MgiYsvk=
- dependencies:
- encodeurl "~1.0.2"
- escape-html "~1.0.3"
- parseurl "~1.3.3"
- send "0.17.1"
-
-set-getter@^0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/set-getter/-/set-getter-0.1.0.tgz#d769c182c9d5a51f409145f2fba82e5e86e80376"
- integrity sha1-12nBgsnVpR9AkUXy+6guXoboA3Y=
- dependencies:
- to-object-path "^0.3.0"
-
-set-value@^2.0.0, set-value@^2.0.1:
- version "2.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
- integrity sha1-oY1AUw5vB95CKMfe/kInr4ytAFs=
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.3"
- split-string "^3.0.1"
-
-setprototypeof@1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
- integrity sha1-fpWsskqpL1iF4KvvW6ExMw1K5oM=
-
-shebang-command@^1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea"
- integrity sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=
- dependencies:
- shebang-regex "^1.0.0"
-
-shebang-regex@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/shebang-regex/-/shebang-regex-1.0.0.tgz#da42f49740c0b42db2ca9728571cb190c98efea3"
- integrity sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=
-
-shell-quote@1.7.2:
- version "1.7.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/shell-quote/-/shell-quote-1.7.2.tgz#67a7d02c76c9da24f99d20808fcaded0e0e04be2"
- integrity sha1-Z6fQLHbJ2iT5nSCAj8re0ODgS+I=
-
-shelljs@^0.8.4:
- version "0.8.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/shelljs/-/shelljs-0.8.4.tgz#de7684feeb767f8716b326078a8a00875890e3c2"
- integrity sha1-3naE/ut2f4cWsyYHiooAh1iQ48I=
- dependencies:
- glob "^7.0.0"
- interpret "^1.0.0"
- rechoir "^0.6.2"
-
-signal-exit@^3.0.0, signal-exit@^3.0.2:
- version "3.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c"
- integrity sha1-oUEMLt2PB3sItOJTyOrPyvBXRhw=
-
-simple-swizzle@^0.2.2:
- version "0.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a"
- integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo=
- dependencies:
- is-arrayish "^0.3.1"
-
-sitemap@^3.2.2:
- version "3.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sitemap/-/sitemap-3.2.2.tgz#3f77c358fa97b555c879e457098e39910095c62b"
- integrity sha1-P3fDWPqXtVXIeeRXCY45kQCVxis=
- dependencies:
- lodash.chunk "^4.2.0"
- lodash.padstart "^4.6.1"
- whatwg-url "^7.0.0"
- xmlbuilder "^13.0.0"
-
-slash@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/slash/-/slash-1.0.0.tgz#c41f2f6c39fc16d1cd17ad4b5d896114ae470d55"
- integrity sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=
-
-snapdragon-node@^2.0.1:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/snapdragon-node/-/snapdragon-node-2.1.1.tgz#6c175f86ff14bdb0724563e8f3c1b021a286853b"
- integrity sha1-bBdfhv8UvbByRWPo88GwIaKGhTs=
- dependencies:
- define-property "^1.0.0"
- isobject "^3.0.0"
- snapdragon-util "^3.0.1"
-
-snapdragon-util@^3.0.1:
- version "3.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/snapdragon-util/-/snapdragon-util-3.0.1.tgz#f956479486f2acd79700693f6f7b805e45ab56e2"
- integrity sha1-+VZHlIbyrNeXAGk/b3uAXkWrVuI=
- dependencies:
- kind-of "^3.2.0"
-
-snapdragon@^0.8.1:
- version "0.8.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/snapdragon/-/snapdragon-0.8.2.tgz#64922e7c565b0e14204ba1aa7d6964278d25182d"
- integrity sha1-ZJIufFZbDhQgS6GqfWlkJ40lGC0=
- dependencies:
- base "^0.11.1"
- debug "^2.2.0"
- define-property "^0.2.5"
- extend-shallow "^2.0.1"
- map-cache "^0.2.2"
- source-map "^0.5.6"
- source-map-resolve "^0.5.0"
- use "^3.1.0"
-
-sockjs-client@1.4.0:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sockjs-client/-/sockjs-client-1.4.0.tgz#c9f2568e19c8fd8173b4997ea3420e0bb306c7d5"
- integrity sha1-yfJWjhnI/YFztJl+o0IOC7MGx9U=
- dependencies:
- debug "^3.2.5"
- eventsource "^1.0.7"
- faye-websocket "~0.11.1"
- inherits "^2.0.3"
- json3 "^3.3.2"
- url-parse "^1.4.3"
-
-sort-keys-length@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sort-keys-length/-/sort-keys-length-1.0.1.tgz#9cb6f4f4e9e48155a6aa0671edd336ff1479a188"
- integrity sha1-nLb09OnkgVWmqgZx7dM2/xR5oYg=
- dependencies:
- sort-keys "^1.0.0"
-
-sort-keys@^1.0.0:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sort-keys/-/sort-keys-1.1.2.tgz#441b6d4d346798f1b4e49e8920adfba0e543f9ad"
- integrity sha1-RBttTTRnmPG05J6JIK37oOVD+a0=
- dependencies:
- is-plain-obj "^1.0.0"
-
-sort-keys@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
- integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
- dependencies:
- is-plain-obj "^1.0.0"
-
-source-map-resolve@^0.5.0:
- version "0.5.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/source-map-resolve/-/source-map-resolve-0.5.3.tgz#190866bece7553e1f8f267a2ee82c606b5509a1a"
- integrity sha1-GQhmvs51U+H48mei7oLGBrVQmho=
- dependencies:
- atob "^2.1.2"
- decode-uri-component "^0.2.0"
- resolve-url "^0.2.1"
- source-map-url "^0.4.0"
- urix "^0.1.0"
-
-source-map-support@^0.5.16:
- version "0.5.19"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61"
- integrity sha1-qYti+G3K9PZzmWSMCFKRq56P7WE=
- dependencies:
- buffer-from "^1.0.0"
- source-map "^0.6.0"
-
-source-map-url@^0.4.0:
- version "0.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/source-map-url/-/source-map-url-0.4.0.tgz#3e935d7ddd73631b97659956d55128e87b5084a3"
- integrity sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=
-
-source-map@^0.5.0, source-map@^0.5.6:
- version "0.5.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
- integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
-
-source-map@^0.6.0, source-map@^0.6.1:
- version "0.6.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263"
- integrity sha1-dHIq8y6WFOnCh6jQu95IteLxomM=
-
-spdx-correct@^3.0.0:
- version "3.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/spdx-correct/-/spdx-correct-3.1.1.tgz#dece81ac9c1e6713e5f7d1b6f17d468fa53d89a9"
- integrity sha1-3s6BrJweZxPl99G28X1Gj6U9iak=
- dependencies:
- spdx-expression-parse "^3.0.0"
- spdx-license-ids "^3.0.0"
-
-spdx-exceptions@^2.1.0:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz#3f28ce1a77a00372683eade4a433183527a2163d"
- integrity sha1-PyjOGnegA3JoPq3kpDMYNSeiFj0=
-
-spdx-expression-parse@^3.0.0:
- version "3.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz#cf70f50482eefdc98e3ce0a6833e4a53ceeba679"
- integrity sha1-z3D1BILu/cmOPOCmgz5KU87rpnk=
- dependencies:
- spdx-exceptions "^2.1.0"
- spdx-license-ids "^3.0.0"
-
-spdx-license-ids@^3.0.0:
- version "3.0.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz#3694b5804567a458d3c8045842a6358632f62654"
- integrity sha1-NpS1gEVnpFjTyARYQqY1hjL2JlQ=
-
-split-string@^3.0.1, split-string@^3.0.2:
- version "3.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/split-string/-/split-string-3.1.0.tgz#7cb09dda3a86585705c64b39a6466038682e8fe2"
- integrity sha1-fLCd2jqGWFcFxks5pkZgOGguj+I=
- dependencies:
- extend-shallow "^3.0.0"
-
-sprintf-js@~1.0.2:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
- integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=
-
-squeak@^1.0.0:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/squeak/-/squeak-1.3.0.tgz#33045037b64388b567674b84322a6521073916c3"
- integrity sha1-MwRQN7ZDiLVnZ0uEMiplIQc5FsM=
- dependencies:
- chalk "^1.0.0"
- console-stream "^0.1.1"
- lpad-align "^1.0.1"
-
-sshpk@^1.7.0:
- version "1.16.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/sshpk/-/sshpk-1.16.1.tgz#fb661c0bef29b39db40769ee39fa70093d6f6877"
- integrity sha1-+2YcC+8ps520B2nuOfpwCT1vaHc=
- dependencies:
- asn1 "~0.2.3"
- assert-plus "^1.0.0"
- bcrypt-pbkdf "^1.0.0"
- dashdash "^1.12.0"
- ecc-jsbn "~0.1.1"
- getpass "^0.1.1"
- jsbn "~0.1.0"
- safer-buffer "^2.0.2"
- tweetnacl "~0.14.0"
-
-stable@^0.1.8:
- version "0.1.8"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
- integrity sha1-g26zyDgv4pNv6vVEYxAXzn1Ho88=
-
-static-extend@^0.1.1:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
- integrity sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=
- dependencies:
- define-property "^0.2.5"
- object-copy "^0.1.0"
-
-"statuses@>= 1.5.0 < 2", statuses@~1.5.0:
- version "1.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
- integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
-
-strict-uri-encode@^1.0.0:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz#279b225df1d582b1f54e65addd4352e18faa0713"
- integrity sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=
-
-string-template@~0.2.1:
- version "0.2.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string-template/-/string-template-0.2.1.tgz#42932e598a352d01fc22ec3367d9d84eec6c9add"
- integrity sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=
-
-string-width@^2.1.0:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e"
- integrity sha1-q5Pyeo3BPSjKyBXEYhQ6bZASrp4=
- dependencies:
- is-fullwidth-code-point "^2.0.0"
- strip-ansi "^4.0.0"
-
-string.prototype.trimend@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string.prototype.trimend/-/string.prototype.trimend-1.0.1.tgz#85812a6b847ac002270f5808146064c995fb6913"
- integrity sha1-hYEqa4R6wAInD1gIFGBkyZX7aRM=
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.5"
-
-string.prototype.trimstart@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string.prototype.trimstart/-/string.prototype.trimstart-1.0.1.tgz#14af6d9f34b053f7cfc89b72f8f2ee14b9039a54"
- integrity sha1-FK9tnzSwU/fPyJty+PLuFLkDmlQ=
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.5"
-
-string_decoder@0.10:
- version "0.10.31"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
- integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
-
-string_decoder@^1.1.1:
- version "1.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string_decoder/-/string_decoder-1.3.0.tgz#42f114594a46cf1a8e30b0a84f56c78c3edac21e"
- integrity sha1-QvEUWUpGzxqOMLCoT1bHjD7awh4=
- dependencies:
- safe-buffer "~5.2.0"
-
-string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
- integrity sha1-nPFhG6YmhdcDCunkujQUnDrwP8g=
- dependencies:
- safe-buffer "~5.1.0"
-
-strip-ansi@5.2.0, strip-ansi@^5.1.0:
- version "5.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
- integrity sha1-jJpTb+tq/JYr36WxBKUJHBrZwK4=
- dependencies:
- ansi-regex "^4.1.0"
-
-strip-ansi@^3.0.0:
- version "3.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf"
- integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=
- dependencies:
- ansi-regex "^2.0.0"
-
-strip-ansi@^4.0.0:
- version "4.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f"
- integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8=
- dependencies:
- ansi-regex "^3.0.0"
-
-strip-bom@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-bom/-/strip-bom-2.0.0.tgz#6219a85616520491f35788bdbf1447a99c7e6b0e"
- integrity sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=
- dependencies:
- is-utf8 "^0.2.0"
-
-strip-color@^0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-color/-/strip-color-0.1.0.tgz#106f65d3d3e6a2d9401cac0eb0ce8b8a702b4f7b"
- integrity sha1-EG9l09PmotlAHKwOsM6LinArT3s=
-
-strip-dirs@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-dirs/-/strip-dirs-2.1.0.tgz#4987736264fc344cf20f6c34aca9d13d1d4ed6c5"
- integrity sha1-SYdzYmT8NEzyD2w0rKnRPR1O1sU=
- dependencies:
- is-natural-number "^4.0.1"
-
-strip-eof@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
- integrity sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=
-
-strip-indent@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-indent/-/strip-indent-1.0.1.tgz#0c7962a6adefa7bbd4ac366460a638552ae1a0a2"
- integrity sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=
- dependencies:
- get-stdin "^4.0.1"
-
-strip-outer@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/strip-outer/-/strip-outer-1.0.1.tgz#b2fd2abf6604b9d1e6013057195df836b8a9d631"
- integrity sha1-sv0qv2YEudHmATBXGV34Nrip1jE=
- dependencies:
- escape-string-regexp "^1.0.2"
-
-stylehacks@^4.0.0:
- version "4.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/stylehacks/-/stylehacks-4.0.3.tgz#6718fcaf4d1e07d8a1318690881e8d96726a71d5"
- integrity sha1-Zxj8r00eB9ihMYaQiB6NlnJqcdU=
- dependencies:
- browserslist "^4.0.0"
- postcss "^7.0.0"
- postcss-selector-parser "^3.0.0"
-
-supports-color@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
- integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
-
-supports-color@^5.3.0:
- version "5.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
- integrity sha1-4uaaRKyHcveKHsCzW2id9lMO/I8=
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^6.1.0:
- version "6.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3"
- integrity sha1-B2Srxpxj1ayELdSGfo0CXogN+PM=
- dependencies:
- has-flag "^3.0.0"
-
-supports-color@^7.1.0:
- version "7.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1"
- integrity sha1-aOMlkd9z4lrRxLSRCKLsUHliv9E=
- dependencies:
- has-flag "^4.0.0"
-
-svgo@^1.0.0, svgo@^1.3.2:
- version "1.3.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/svgo/-/svgo-1.3.2.tgz#b6dc511c063346c9e415b81e43401145b96d4167"
- integrity sha1-ttxRHAYzRsnkFbgeQ0ARRbltQWc=
- dependencies:
- chalk "^2.4.1"
- coa "^2.0.2"
- css-select "^2.0.0"
- css-select-base-adapter "^0.1.1"
- css-tree "1.0.0-alpha.37"
- csso "^4.0.2"
- js-yaml "^3.13.1"
- mkdirp "~0.5.1"
- object.values "^1.1.0"
- sax "~1.2.4"
- stable "^0.1.8"
- unquote "~1.1.1"
- util.promisify "~1.0.0"
-
-tapable@^1.0.0:
- version "1.1.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
- integrity sha1-ofzMBrWNth/XpF2i2kT186Pme6I=
-
-tar-stream@^1.5.2:
- version "1.6.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tar-stream/-/tar-stream-1.6.2.tgz#8ea55dab37972253d9a9af90fdcd559ae435c555"
- integrity sha1-jqVdqzeXIlPZqa+Q/c1VmuQ1xVU=
- dependencies:
- bl "^1.0.0"
- buffer-alloc "^1.2.0"
- end-of-stream "^1.0.0"
- fs-constants "^1.0.0"
- readable-stream "^2.3.0"
- to-buffer "^1.1.1"
- xtend "^4.0.0"
-
-tcp-port-used@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tcp-port-used/-/tcp-port-used-1.0.1.tgz#46061078e2d38c73979a2c2c12b5a674e6689d70"
- integrity sha1-RgYQeOLTjHOXmiwsErWmdOZonXA=
- dependencies:
- debug "4.1.0"
- is2 "2.0.1"
-
-temp-dir@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d"
- integrity sha1-CnwOom06Oa+n4OvqnB/AvE2qAR0=
-
-tempfile@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tempfile/-/tempfile-2.0.0.tgz#6b0446856a9b1114d1856ffcbe509cccb0977265"
- integrity sha1-awRGhWqbERTRhW/8vlCczLCXcmU=
- dependencies:
- temp-dir "^1.0.0"
- uuid "^3.0.1"
-
-text-table@0.2.0:
- version "0.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
- integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=
-
-through2@^2.0.0:
- version "2.0.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/through2/-/through2-2.0.5.tgz#01c1e39eb31d07cb7d03a96a70823260b23132cd"
- integrity sha1-AcHjnrMdB8t9A6lqcIIyYLIxMs0=
- dependencies:
- readable-stream "~2.3.6"
- xtend "~4.0.1"
-
-through@^2.3.6, through@^2.3.8:
- version "2.3.8"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
- integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
-
-timed-out@^4.0.0, timed-out@^4.0.1:
- version "4.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
- integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
-
-timsort@^0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/timsort/-/timsort-0.3.0.tgz#405411a8e7e6339fe64db9a234de11dc31e02bd4"
- integrity sha1-QFQRqOfmM5/mTbmiNN4R3DHgK9Q=
-
-tiny-emitter@^2.0.0:
- version "2.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
- integrity sha1-HRpW7fxRxD6GPLtTgqcjMONVVCM=
-
-tiny-lr@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tiny-lr/-/tiny-lr-1.1.1.tgz#9fa547412f238fedb068ee295af8b682c98b2aab"
- integrity sha1-n6VHQS8jj+2waO4pWvi2gsmLKqs=
- dependencies:
- body "^5.1.0"
- debug "^3.1.0"
- faye-websocket "~0.10.0"
- livereload-js "^2.3.0"
- object-assign "^4.1.0"
- qs "^6.4.0"
-
-tmp@^0.0.33:
- version "0.0.33"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tmp/-/tmp-0.0.33.tgz#6d34335889768d21b2bcda0aa277ced3b1bfadf9"
- integrity sha1-bTQzWIl2jSGyvNoKonfO07G/rfk=
- dependencies:
- os-tmpdir "~1.0.2"
-
-to-buffer@^1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/to-buffer/-/to-buffer-1.1.1.tgz#493bd48f62d7c43fcded313a03dcadb2e1213a80"
- integrity sha1-STvUj2LXxD/N7TE6A9ytsuEhOoA=
-
-to-fast-properties@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
- integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=
-
-to-object-path@^0.3.0:
- version "0.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/to-object-path/-/to-object-path-0.3.0.tgz#297588b7b0e7e0ac08e04e672f85c1f4999e17af"
- integrity sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=
- dependencies:
- kind-of "^3.0.2"
-
-to-regex-range@^2.1.0:
- version "2.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/to-regex-range/-/to-regex-range-2.1.1.tgz#7c80c17b9dfebe599e27367e0d4dd5590141db38"
- integrity sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=
- dependencies:
- is-number "^3.0.0"
- repeat-string "^1.6.1"
-
-to-regex@^3.0.1, to-regex@^3.0.2:
- version "3.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/to-regex/-/to-regex-3.0.2.tgz#13cfdd9b336552f30b51f33a8ae1b42a7a7599ce"
- integrity sha1-E8/dmzNlUvMLUfM6iuG0Knp1mc4=
- dependencies:
- define-property "^2.0.2"
- extend-shallow "^3.0.2"
- regex-not "^1.0.2"
- safe-regex "^1.1.0"
-
-toidentifier@1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
- integrity sha1-fhvjRw8ed5SLxD2Uo8j013UrpVM=
-
-toml@^2.3.2:
- version "2.3.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/toml/-/toml-2.3.6.tgz#25b0866483a9722474895559088b436fd11f861b"
- integrity sha1-JbCGZIOpciR0iVVZCItDb9Efhhs=
-
-tough-cookie@~2.5.0:
- version "2.5.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
- integrity sha1-zZ+yoKodWhK0c72fuW+j3P9lreI=
- dependencies:
- psl "^1.1.28"
- punycode "^2.1.1"
-
-tr46@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
- integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
- dependencies:
- punycode "^2.1.0"
-
-tree-node-cli@^1.2.5:
- version "1.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tree-node-cli/-/tree-node-cli-1.4.0.tgz#8f4028554610d6ee1cdeb98554a60841a3cfa3ac"
- integrity sha1-j0AoVUYQ1u4c3rmFVKYIQaPPo6w=
- dependencies:
- commander "^5.0.0"
-
-trim-newlines@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/trim-newlines/-/trim-newlines-1.0.0.tgz#5887966bb582a4503a41eb524f7d35011815a613"
- integrity sha1-WIeWa7WCpFA6QetST301ARgVphM=
-
-trim-repeated@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/trim-repeated/-/trim-repeated-1.0.0.tgz#e3646a2ea4e891312bf7eace6cfb05380bc01c21"
- integrity sha1-42RqLqTokTEr9+rObPsFOAvAHCE=
- dependencies:
- escape-string-regexp "^1.0.2"
-
-truncate-html@^1.0.3:
- version "1.0.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/truncate-html/-/truncate-html-1.0.3.tgz#0166dfc7890626130c2e4174c6b73d4d63993e5f"
- integrity sha1-AWbfx4kGJhMMLkF0xrc9TWOZPl8=
- dependencies:
- "@types/cheerio" "^0.22.8"
- cheerio "0.22.0"
-
-tslib@^1.9.0, tslib@^1.9.3:
- version "1.13.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043"
- integrity sha1-yIHhPMcBWJTtkUhi0nZDb6mkcEM=
-
-tunnel-agent@^0.6.0:
- version "0.6.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
- integrity sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=
- dependencies:
- safe-buffer "^5.0.1"
-
-tweetnacl@^0.14.3, tweetnacl@~0.14.0:
- version "0.14.5"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/tweetnacl/-/tweetnacl-0.14.5.tgz#5ae68177f192d4456269d108afa93ff8743f4f64"
- integrity sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=
-
-type-is@~1.6.17, type-is@~1.6.18:
- version "1.6.18"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
- integrity sha1-TlUs0F3wlGfcvE73Od6J8s83wTE=
- dependencies:
- media-typer "0.3.0"
- mime-types "~2.1.24"
-
-typedarray@^0.0.6:
- version "0.0.6"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
- integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
-
-unbzip2-stream@^1.0.9:
- version "1.4.3"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz#b0da04c4371311df771cdc215e87f2130991ace7"
- integrity sha1-sNoExDcTEd93HNwhXofyEwmRrOc=
- dependencies:
- buffer "^5.2.1"
- through "^2.3.8"
-
-unicode-canonical-property-names-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818"
- integrity sha1-JhmADEyCWADv3YNDr33Zkzy+KBg=
-
-unicode-match-property-ecmascript@^1.0.4:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c"
- integrity sha1-jtKjJWmWG86SJ9Cc0/+7j+1fAgw=
- dependencies:
- unicode-canonical-property-names-ecmascript "^1.0.4"
- unicode-property-aliases-ecmascript "^1.0.4"
-
-unicode-match-property-value-ecmascript@^1.2.0:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531"
- integrity sha1-DZH2AO7rMJaqlisdb8iIduZOpTE=
-
-unicode-property-aliases-ecmascript@^1.0.4:
- version "1.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.1.0.tgz#dd57a99f6207bedff4628abefb94c50db941c8f4"
- integrity sha1-3Vepn2IHvt/0Yoq++5TFDblByPQ=
-
-union-value@^1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
- integrity sha1-C2/nuDWuzaYcbqTU8CwUIh4QmEc=
- dependencies:
- arr-union "^3.1.0"
- get-value "^2.0.6"
- is-extendable "^0.1.1"
- set-value "^2.0.1"
-
-uniq@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff"
- integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=
-
-uniqs@^2.0.0:
- version "2.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/uniqs/-/uniqs-2.0.0.tgz#ffede4b36b25290696e6e165d4a59edb998e6b02"
- integrity sha1-/+3ks2slKQaW5uFl1KWe25mOawI=
-
-universalify@^0.1.0:
- version "0.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66"
- integrity sha1-tkb2m+OULavOzJ1mOcgNwQXvqmY=
-
-unpipe@1.0.0, unpipe@~1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec"
- integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=
-
-unquote@~1.1.1:
- version "1.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544"
- integrity sha1-j97XMk7G6IoP+LkF58CYzcCG1UQ=
-
-unset-value@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/unset-value/-/unset-value-1.0.0.tgz#8376873f7d2335179ffb1e6fc3a8ed0dfc8ab559"
- integrity sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=
- dependencies:
- has-value "^0.3.1"
- isobject "^3.0.0"
-
-upath@^1.1.1:
- version "1.2.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894"
- integrity sha1-j2bbzVWog6za5ECK+LA1pQRMGJQ=
-
-uri-js@^4.2.2:
- version "4.2.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/uri-js/-/uri-js-4.2.2.tgz#94c540e1ff772956e2299507c010aea6c8838eb0"
- integrity sha1-lMVA4f93KVbiKZUHwBCupsiDjrA=
- dependencies:
- punycode "^2.1.0"
-
-urix@^0.1.0:
- version "0.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
- integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
-
-url-parse-lax@^1.0.0:
- version "1.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/url-parse-lax/-/url-parse-lax-1.0.0.tgz#7af8f303645e9bd79a272e7a14ac68bc0609da73"
- integrity sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=
- dependencies:
- prepend-http "^1.0.1"
-
-url-parse-lax@^3.0.0:
- version "3.0.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
- integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
- dependencies:
- prepend-http "^2.0.0"
-
-url-parse@^1.4.3:
- version "1.4.7"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/url-parse/-/url-parse-1.4.7.tgz#a8a83535e8c00a316e403a5db4ac1b9b853ae278"
- integrity sha1-qKg1NejACjFuQDpdtKwbm4U64ng=
- dependencies:
- querystringify "^2.1.1"
- requires-port "^1.0.0"
-
-url-to-options@^1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
- integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=
-
-use@^3.1.0:
- version "3.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
- integrity sha1-1QyMrHmhn7wg8pEfVuuXP04QBw8=
-
-util-deprecate@^1.0.1, util-deprecate@~1.0.1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
- integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
-
-util.promisify@~1.0.0:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/util.promisify/-/util.promisify-1.0.1.tgz#6baf7774b80eeb0f7520d8b81d07982a59abbaee"
- integrity sha1-a693dLgO6w91INi4HQeYKlmruu4=
- dependencies:
- define-properties "^1.1.3"
- es-abstract "^1.17.2"
- has-symbols "^1.0.1"
- object.getownpropertydescriptors "^2.1.0"
-
-utils-merge@1.0.1:
- version "1.0.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/utils-merge/-/utils-merge-1.0.1.tgz#9f95710f50a267947b2ccc124741c1028427e713"
- integrity sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=
-
-uuid@^3.0.1, uuid@^3.3.2:
- version "3.4.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
- integrity sha1-sj5DWK+oogL+ehAK8fX4g/AgB+4=
-
-validate-npm-package-license@^3.0.1:
- version "3.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz#fc91f6b9c7ba15c857f4cb2c5defeec39d4f410a"
- integrity sha1-/JH2uce6FchX9MssXe/uw51PQQo=
- dependencies:
- spdx-correct "^3.0.0"
- spdx-expression-parse "^3.0.0"
-
-vary@~1.1.2:
- version "1.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
- integrity sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=
-
-vendors@^1.0.0:
- version "1.0.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/vendors/-/vendors-1.0.4.tgz#e2b800a53e7a29b93506c3cf41100d16c4c4ad8e"
- integrity sha1-4rgApT56Kbk1BsPPQRANFsTErY4=
-
-verror@1.10.0:
- version "1.10.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/verror/-/verror-1.10.0.tgz#3a105ca17053af55d6e270c1f8288682e18da400"
- integrity sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=
- dependencies:
- assert-plus "^1.0.0"
- core-util-is "1.0.2"
- extsprintf "^1.2.0"
-
-webidl-conversions@^4.0.2:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
- integrity sha1-qFWYCx8LazWbodXZ+zmulB+qY60=
-
-websocket-driver@>=0.5.1:
- version "0.7.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/websocket-driver/-/websocket-driver-0.7.4.tgz#89ad5295bbf64b480abcba31e4953aca706f5760"
- integrity sha1-ia1Slbv2S0gKvLox5JU6ynBvV2A=
- dependencies:
- http-parser-js ">=0.5.1"
- safe-buffer ">=5.1.0"
- websocket-extensions ">=0.1.1"
-
-websocket-extensions@>=0.1.1:
- version "0.1.4"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/websocket-extensions/-/websocket-extensions-0.1.4.tgz#7f8473bc839dfd87608adb95d7eb075211578a42"
- integrity sha1-f4RzvIOd/YdgituV1+sHUhFXikI=
-
-whatwg-url@^7.0.0:
- version "7.1.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/whatwg-url/-/whatwg-url-7.1.0.tgz#c2c492f1eca612988efd3d2266be1b9fc6170d06"
- integrity sha1-wsSS8eymEpiO/T0iZr4bn8YXDQY=
- dependencies:
- lodash.sortby "^4.7.0"
- tr46 "^1.0.1"
- webidl-conversions "^4.0.2"
-
-which@^1.2.9, which@^1.3.1:
- version "1.3.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/which/-/which-1.3.1.tgz#a45043d54f5805316da8d62f9f50918d3da70b0a"
- integrity sha1-pFBD1U9YBTFtqNYvn1CRjT2nCwo=
- dependencies:
- isexe "^2.0.0"
-
-wordwrap@0.0.2:
- version "0.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/wordwrap/-/wordwrap-0.0.2.tgz#b79669bb42ecb409f83d583cad52ca17eaa1643f"
- integrity sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=
-
-worker-rpc@^0.1.0:
- version "0.1.1"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/worker-rpc/-/worker-rpc-0.1.1.tgz#cb565bd6d7071a8f16660686051e969ad32f54d5"
- integrity sha1-y1Zb1tcHGo8WZgaGBR6WmtMvVNU=
- dependencies:
- microevent.ts "~0.1.1"
-
-wrappy@1:
- version "1.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
- integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
-
-xml-js@^1.6.11:
- version "1.6.11"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9"
- integrity sha1-kn0vaUf38cGaMW3Y7qNhTosY+Ok=
- dependencies:
- sax "^1.2.4"
-
-xmlbuilder@^13.0.0:
- version "13.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/xmlbuilder/-/xmlbuilder-13.0.2.tgz#02ae33614b6a047d1c32b5389c1fdacb2bce47a7"
- integrity sha1-Aq4zYUtqBH0cMrU4nB/ayyvOR6c=
-
-xtend@^4.0.0, xtend@~4.0.1:
- version "4.0.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
- integrity sha1-u3J3n1+kZRhrH0OPZ0+jR/2121Q=
-
-yallist@^2.1.2:
- version "2.1.2"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
- integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-
-yamljs@^0.2.1:
- version "0.2.10"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/yamljs/-/yamljs-0.2.10.tgz#481cc7c25ca73af59f591f0c96e3ce56c757a40f"
- integrity sha1-SBzHwlynOvWfWR8MluPOVsdXpA8=
- dependencies:
- argparse "^1.0.7"
- glob "^7.0.5"
-
-yargs@^2.3.0:
- version "2.3.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/yargs/-/yargs-2.3.0.tgz#e900c87250ec5cd080db6009fe3dd63156f1d7fb"
- integrity sha1-6QDIclDsXNCA22AJ/j3WMVbx1/s=
- dependencies:
- wordwrap "0.0.2"
-
-yauzl@^2.4.2:
- version "2.10.0"
- resolved "https://artifactory.spotify.net/artifactory/api/npm/virtual-npm/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9"
- integrity sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=
- dependencies:
- buffer-crc32 "~0.2.3"
- fd-slicer "~1.1.0"
diff --git a/mkdocs.yml b/mkdocs.yml
index 2380001203..27335903de 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -25,7 +25,6 @@ nav:
- Overview: 'features/software-catalog/index.md'
- System model: 'features/software-catalog/system-model.md'
- YAML File Format: 'features/software-catalog/descriptor-format.md'
- - Populating the catalog: 'features/software-catalog/populating.md'
- Extending the model: 'features/software-catalog/extending-the-model.md'
- External integrations: 'features/software-catalog/external-integrations.md'
- API: 'features/software-catalog/api.md'
@@ -71,11 +70,12 @@ nav:
- Overview: 'auth/index.md'
- Add auth provider: 'auth/add-auth-provider.md'
- Auth backend: 'auth/auth-backend.md'
+ - Auth backend class structure: 'auth/auth-backend-classes.md'
- OAuth: 'auth/oauth.md'
- Glossary: 'auth/glossary.md'
- Designing for Backstage:
- Backstage Design Language System (DLS): 'dls/design.md'
- - Storybook -- reusable UI components: 'http://storybook.backstage.io'
+ - Storybook -- reusable UI components: 'http://backstage.io/storybook'
- Contributing to Storybook: 'dls/contributing-to-storybook.md'
- Figma resources: 'dls/figma.md'
- API references:
diff --git a/package.json b/package.json
index fa71c19d7c..b24c0ed2fb 100644
--- a/package.json
+++ b/package.json
@@ -30,7 +30,8 @@
"workspaces": {
"packages": [
"packages/*",
- "plugins/*"
+ "plugins/*",
+ "microsite"
]
},
"version": "1.0.0",
@@ -38,10 +39,12 @@
"@spotify/eslint-config-oss": "^1.0.1",
"@spotify/prettier-config": "^8.0.0",
"concurrently": "^5.2.0",
+ "fs-extra": "^9.0.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^10.1.0",
- "prettier": "^2.0.5"
+ "prettier": "^2.0.5",
+ "recursive-readdir": "^2.2.2"
},
"husky": {
"hooks": {
diff --git a/packages/app/package.json b/packages/app/package.json
index 99865a4216..0e2cb677a4 100644
--- a/packages/app/package.json
+++ b/packages/app/package.json
@@ -5,13 +5,16 @@
"dependencies": {
"@backstage/cli": "^0.1.1-alpha.18",
"@backstage/core": "^0.1.1-alpha.18",
+ "@backstage/plugin-api-docs": "^0.1.1-alpha.18",
"@backstage/plugin-catalog": "^0.1.1-alpha.18",
"@backstage/plugin-circleci": "^0.1.1-alpha.18",
"@backstage/plugin-explore": "^0.1.1-alpha.18",
"@backstage/plugin-github-actions": "^0.1.1-alpha.18",
"@backstage/plugin-gitops-profiles": "^0.1.1-alpha.18",
"@backstage/plugin-graphiql": "^0.1.1-alpha.18",
+ "@backstage/plugin-jenkins": "^0.1.1-alpha.18",
"@backstage/plugin-lighthouse": "^0.1.1-alpha.18",
+ "@backstage/plugin-newrelic": "^0.1.1-alpha.18",
"@backstage/plugin-register-component": "^0.1.1-alpha.18",
"@backstage/plugin-rollbar": "^0.1.1-alpha.18",
"@backstage/plugin-scaffolder": "^0.1.1-alpha.18",
@@ -24,6 +27,7 @@
"@material-ui/core": "^4.9.1",
"@material-ui/icons": "^4.9.1",
"@octokit/rest": "^18.0.0",
+ "@roadiehq/backstage-plugin-travis-ci": "^0.1.3",
"history": "^5.0.0",
"prop-types": "^15.7.2",
"react": "^16.12.0",
diff --git a/packages/app/src/apis.ts b/packages/app/src/apis.ts
index 5bb17fd9c8..3bc0c82b31 100644
--- a/packages/app/src/apis.ts
+++ b/packages/app/src/apis.ts
@@ -64,6 +64,9 @@ import {
GithubActionsClient,
githubActionsApiRef,
} from '@backstage/plugin-github-actions';
+import { jenkinsApiRef, JenkinsApi } from '@backstage/plugin-jenkins';
+
+import { TravisCIApi, travisCIApiRef } from '@roadiehq/backstage-plugin-travis-ci';
export const apis = (config: ConfigApi) => {
// eslint-disable-next-line no-console
@@ -85,12 +88,16 @@ export const apis = (config: ConfigApi) => {
new CircleCIApi(`${backendUrl}/proxy/circleci/api`),
);
+ builder.add(jenkinsApiRef, new JenkinsApi(`${backendUrl}/proxy/jenkins/api`));
+
builder.add(githubActionsApiRef, new GithubActionsClient());
builder.add(featureFlagsApiRef, new FeatureFlags());
builder.add(lighthouseApiRef, new LighthouseRestApi('http://localhost:3003'));
+ builder.add(travisCIApiRef, new TravisCIApi());
+
const oauthRequestApi = builder.add(
oauthRequestApiRef,
new OAuthRequestManager(),
diff --git a/packages/app/src/components/Root/Root.tsx b/packages/app/src/components/Root/Root.tsx
index a86b92ab43..1d32b6e16e 100644
--- a/packages/app/src/components/Root/Root.tsx
+++ b/packages/app/src/components/Root/Root.tsx
@@ -19,6 +19,7 @@ import PropTypes from 'prop-types';
import { Link, makeStyles } from '@material-ui/core';
import HomeIcon from '@material-ui/icons/Home';
import ExploreIcon from '@material-ui/icons/Explore';
+import ExtensionIcon from '@material-ui/icons/Extension';
import BuildIcon from '@material-ui/icons/BuildRounded';
import RuleIcon from '@material-ui/icons/AssignmentTurnedIn';
import MapIcon from '@material-ui/icons/MyLocation';
@@ -90,6 +91,7 @@ const Root: FC<{}> = ({ children }) => (
{/* Global nav, not org-specific */}
+
{/* End global nav */}
diff --git a/packages/app/src/plugins.ts b/packages/app/src/plugins.ts
index 46c8f23ef0..4ec19c74f3 100644
--- a/packages/app/src/plugins.ts
+++ b/packages/app/src/plugins.ts
@@ -27,3 +27,7 @@ export { plugin as TechDocs } from '@backstage/plugin-techdocs';
export { plugin as GraphiQL } from '@backstage/plugin-graphiql';
export { plugin as GithubActions } from '@backstage/plugin-github-actions';
export { plugin as Rollbar } from '@backstage/plugin-rollbar';
+export { plugin as Newrelic } from '@backstage/plugin-newrelic';
+export { plugin as TravisCI } from '@roadiehq/backstage-plugin-travis-ci';
+export { plugin as Jenkins } from '@backstage/plugin-jenkins';
+export { plugin as ApiDocs } from '@backstage/plugin-api-docs';
diff --git a/packages/backend-common/package.json b/packages/backend-common/package.json
index e21d0eb0d7..5cf2ee95e5 100644
--- a/packages/backend-common/package.json
+++ b/packages/backend-common/package.json
@@ -39,10 +39,20 @@
"express": "^4.17.1",
"express-promise-router": "^3.0.3",
"helmet": "^4.0.0",
+ "knex": "^0.21.1",
+ "lodash": "^4.17.15",
"morgan": "^1.10.0",
"stoppable": "^1.1.0",
"winston": "^3.2.1"
},
+ "peerDependencies": {
+ "pg-connection-string": "^2.3.0"
+ },
+ "peerDependenciesMeta": {
+ "pg-connection-string": {
+ "optional": true
+ }
+ },
"devDependencies": {
"@backstage/cli": "^0.1.1-alpha.18",
"@types/compression": "^1.7.0",
diff --git a/packages/backend-common/src/database/config.test.ts b/packages/backend-common/src/database/config.test.ts
new file mode 100644
index 0000000000..ab29bc19ba
--- /dev/null
+++ b/packages/backend-common/src/database/config.test.ts
@@ -0,0 +1,111 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { mergeDatabaseConfig } from './config';
+
+describe('config', () => {
+ describe(mergeDatabaseConfig, () => {
+ it('does not require overrides', () => {
+ expect(
+ mergeDatabaseConfig({
+ client: 'pg',
+ connection: '',
+ useNullAsDefault: true,
+ }),
+ ).toEqual({
+ client: 'pg',
+ connection: '',
+ useNullAsDefault: true,
+ });
+ });
+
+ it('accepts an empty object', () => {
+ expect(
+ mergeDatabaseConfig(
+ {
+ client: 'pg',
+ connection: '',
+ useNullAsDefault: true,
+ },
+ {},
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: '',
+ useNullAsDefault: true,
+ });
+ });
+
+ it('does a deep merge', () => {
+ expect(
+ mergeDatabaseConfig(
+ {
+ client: 'pg',
+ connection: {
+ database: 'dbname',
+ ssl: {
+ ca: 'foo',
+ },
+ },
+ },
+ {
+ connection: {
+ password: 'secret',
+ ssl: {
+ rejectUnauthorized: true,
+ },
+ },
+ pool: { min: 0, max: 7 },
+ },
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: {
+ database: 'dbname',
+ password: 'secret',
+ ssl: {
+ rejectUnauthorized: true,
+ ca: 'foo',
+ },
+ },
+ pool: { min: 0, max: 7 },
+ });
+ });
+
+ it('replaces a string connection', () => {
+ expect(
+ mergeDatabaseConfig(
+ {
+ client: 'sqlite3',
+ connection: ':memory:',
+ useNullAsDefault: true,
+ },
+ {
+ connection: {
+ filename: '/path/to/file',
+ },
+ },
+ ),
+ ).toEqual({
+ client: 'sqlite3',
+ connection: {
+ filename: '/path/to/file',
+ },
+ useNullAsDefault: true,
+ });
+ });
+ });
+});
diff --git a/packages/backend-common/src/database/config.ts b/packages/backend-common/src/database/config.ts
new file mode 100644
index 0000000000..80abc06aa2
--- /dev/null
+++ b/packages/backend-common/src/database/config.ts
@@ -0,0 +1,27 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { merge } from 'lodash';
+
+/**
+ * Merges database objects together
+ *
+ * @param config The base config
+ * @param overrides Any additional overrides
+ */
+export function mergeDatabaseConfig(config: any, ...overrides: any[]) {
+ return merge(config, ...overrides);
+}
diff --git a/packages/backend-common/src/database/connection.test.ts b/packages/backend-common/src/database/connection.test.ts
new file mode 100644
index 0000000000..814503fda1
--- /dev/null
+++ b/packages/backend-common/src/database/connection.test.ts
@@ -0,0 +1,114 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { ConfigReader } from '@backstage/config';
+import { createDatabase } from './connection';
+
+describe('database connection', () => {
+ const createConfig = (data: any) =>
+ ConfigReader.fromConfigs([
+ {
+ context: '',
+ data,
+ },
+ ]);
+
+ describe(createDatabase, () => {
+ it('returns a postgres connection', () => {
+ expect(
+ createDatabase(
+ createConfig({
+ client: 'pg',
+ connection: {
+ host: 'acme',
+ user: 'foo',
+ password: 'bar',
+ database: 'foodb',
+ },
+ }),
+ ),
+ ).toBeTruthy();
+ });
+
+ it('returns an sqlite connection', () => {
+ expect(
+ createDatabase(
+ createConfig({
+ client: 'sqlite3',
+ connection: ':memory:',
+ }),
+ ),
+ ).toBeTruthy();
+ });
+
+ it('tries to create a mysql connection as a passthrough', () => {
+ expect(() =>
+ createDatabase(
+ createConfig({
+ client: 'mysql',
+ connection: {
+ host: '127.0.0.1',
+ user: 'foo',
+ password: 'bar',
+ database: 'dbname',
+ },
+ }),
+ ),
+ ).toThrowError(/Cannot find module 'mysql'/);
+ });
+
+ it('accepts overrides', () => {
+ expect(
+ createDatabase(
+ createConfig({
+ client: 'pg',
+ connection: {
+ host: 'acme',
+ user: 'foo',
+ password: 'bar',
+ database: 'foodb',
+ },
+ }),
+ {
+ connection: {
+ database: 'foo',
+ },
+ },
+ ),
+ ).toBeTruthy();
+ });
+
+ it('throws an error without a client', () => {
+ expect(() =>
+ createDatabase(
+ createConfig({
+ connection: '',
+ }),
+ ),
+ ).toThrowError();
+ });
+
+ it('throws an error without a connection', () => {
+ expect(() =>
+ createDatabase(
+ createConfig({
+ client: 'pg',
+ }),
+ ),
+ ).toThrowError();
+ });
+ });
+});
diff --git a/packages/backend-common/src/database/connection.ts b/packages/backend-common/src/database/connection.ts
new file mode 100644
index 0000000000..d968275482
--- /dev/null
+++ b/packages/backend-common/src/database/connection.ts
@@ -0,0 +1,44 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import knex from 'knex';
+import { ConfigReader } from '@backstage/config';
+import { mergeDatabaseConfig } from './config';
+import { createPgDatabase } from './postgres';
+import { createSqlite3Database } from './sqlite3';
+
+type DatabaseClient = 'pg' | 'sqlite3' | string;
+
+/**
+ * Creates a knex database connection
+ *
+ * @param config The database config
+ * @param overrides Additional options to merge with the config
+ */
+export function createDatabase(
+ config: ConfigReader,
+ overrides?: Partial,
+) {
+ const client: DatabaseClient = config.getString('client');
+
+ if (client === 'pg') {
+ return createPgDatabase(config, overrides);
+ } else if (client === 'sqlite3') {
+ return createSqlite3Database(config);
+ }
+
+ return knex(mergeDatabaseConfig(config.get(), overrides));
+}
diff --git a/packages/backend-common/src/database/index.ts b/packages/backend-common/src/database/index.ts
new file mode 100644
index 0000000000..38d3d6224b
--- /dev/null
+++ b/packages/backend-common/src/database/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+export * from './connection';
diff --git a/packages/backend-common/src/database/postgres.test.ts b/packages/backend-common/src/database/postgres.test.ts
new file mode 100644
index 0000000000..8edfc2c15d
--- /dev/null
+++ b/packages/backend-common/src/database/postgres.test.ts
@@ -0,0 +1,189 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { ConfigReader } from '@backstage/config';
+import {
+ parsePgConnectionString,
+ buildPgDatabaseConfig,
+ createPgDatabase,
+} from './postgres';
+
+describe('postgres', () => {
+ const createConfig = (connection: any) =>
+ ConfigReader.fromConfigs([
+ {
+ context: '',
+ data: {
+ client: 'pg',
+ connection,
+ },
+ },
+ ]);
+
+ describe(buildPgDatabaseConfig, () => {
+ it('builds a postgres config', () => {
+ expect(
+ buildPgDatabaseConfig(
+ createConfig({
+ host: 'acme',
+ user: 'foo',
+ password: 'bar',
+ port: '5432',
+ database: 'foodb',
+ }),
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: {
+ host: 'acme',
+ user: 'foo',
+ password: 'bar',
+ port: '5432',
+ database: 'foodb',
+ },
+ useNullAsDefault: true,
+ });
+ });
+
+ it('builds a connection string config', () => {
+ expect(
+ buildPgDatabaseConfig(
+ createConfig('postgresql://foo:bar@acme:5432/foodb'),
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: 'postgresql://foo:bar@acme:5432/foodb',
+ useNullAsDefault: true,
+ });
+ });
+
+ it('overrides the database name', () => {
+ expect(
+ buildPgDatabaseConfig(
+ createConfig({
+ host: 'somehost',
+ user: 'postgres',
+ password: 'pass',
+ database: 'foo',
+ }),
+ { connection: { database: 'foodb' } },
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: {
+ host: 'somehost',
+ user: 'postgres',
+ password: 'pass',
+ database: 'foodb',
+ },
+ useNullAsDefault: true,
+ });
+ });
+
+ it('adds additional config settings', () => {
+ expect(
+ buildPgDatabaseConfig(
+ createConfig({
+ host: 'somehost',
+ user: 'postgres',
+ password: 'pass',
+ database: 'foo',
+ }),
+ {
+ connection: { database: 'foodb' },
+ pool: { min: 0, max: 7 },
+ debug: true,
+ },
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: {
+ host: 'somehost',
+ user: 'postgres',
+ password: 'pass',
+ database: 'foodb',
+ },
+ useNullAsDefault: true,
+ pool: { min: 0, max: 7 },
+ debug: true,
+ });
+ });
+
+ it('overrides the database from connection string', () => {
+ expect(
+ buildPgDatabaseConfig(
+ createConfig('postgresql://postgres:pass@localhost:5432/dbname'),
+ { connection: { database: 'foodb' } },
+ ),
+ ).toEqual({
+ client: 'pg',
+ connection: {
+ host: 'localhost',
+ user: 'postgres',
+ password: 'pass',
+ port: '5432',
+ database: 'foodb',
+ },
+ useNullAsDefault: true,
+ });
+ });
+ });
+
+ describe(createPgDatabase, () => {
+ it('creates a postgres knex instance', () => {
+ expect(
+ createPgDatabase(
+ createConfig({
+ client: 'pg',
+ connection: {
+ host: 'acme',
+ user: 'foo',
+ password: 'bar',
+ database: 'foodb',
+ },
+ }),
+ ),
+ ).toBeTruthy();
+ });
+
+ it('attempts to read an ssl cert', () => {
+ expect(() =>
+ createPgDatabase(
+ createConfig(
+ 'postgresql://postgres:pass@localhost:5432/dbname?sslrootcert=/path/to/file',
+ ),
+ ),
+ ).toThrowError(/no such file or directory/);
+ });
+ });
+
+ describe(parsePgConnectionString, () => {
+ it('parses a connection string uri ', () => {
+ expect(
+ parsePgConnectionString(
+ 'postgresql://postgres:pass@foobar:5432/dbname?ssl=true',
+ ),
+ ).toEqual({
+ host: 'foobar',
+ user: 'postgres',
+ password: 'pass',
+ port: '5432',
+ database: 'dbname',
+ ssl: true,
+ });
+ });
+ });
+});
diff --git a/packages/backend-common/src/database/postgres.ts b/packages/backend-common/src/database/postgres.ts
new file mode 100644
index 0000000000..09b6d0653b
--- /dev/null
+++ b/packages/backend-common/src/database/postgres.ts
@@ -0,0 +1,80 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import knex from 'knex';
+import { ConfigReader } from '@backstage/config';
+import { mergeDatabaseConfig } from './config';
+
+/**
+ * Creates a knex sqlite3 database connection
+ *
+ * @param dbConfig The database config
+ * @param overrides Additional options to merge with the config
+ */
+export function createPgDatabase(
+ dbConfig: ConfigReader,
+ overrides?: knex.Config,
+) {
+ const knexConfig = buildPgDatabaseConfig(dbConfig, overrides);
+ const database = knex(knexConfig);
+ return database;
+}
+
+/**
+ * Builds a knex postgres database connection
+ *
+ * @param dbConfig The database config
+ * @param overrides Additional options to merge with the config
+ */
+export function buildPgDatabaseConfig(
+ dbConfig: ConfigReader,
+ overrides?: knex.Config,
+) {
+ const connection = dbConfig.get('connection') as any;
+
+ return mergeDatabaseConfig(
+ dbConfig.get(),
+ {
+ // Only parse the connection string when overrides are provided
+ connection:
+ overrides &&
+ (typeof connection === 'string' || connection instanceof String)
+ ? parsePgConnectionString(connection as string)
+ : connection,
+ useNullAsDefault: true,
+ },
+ overrides,
+ );
+}
+
+/**
+ * Parses a connection string using pg-connection-string
+ *
+ * @param connectionString The postgres connection string
+ */
+export function parsePgConnectionString(connectionString: string) {
+ const parse = requirePgConnectionString();
+ return parse(connectionString);
+}
+
+function requirePgConnectionString() {
+ try {
+ return require('pg-connection-string').parse;
+ } catch (e) {
+ const message = `Postgres: Install 'pg-connection-string'`;
+ throw new Error(`${message}\n${e.message}`);
+ }
+}
diff --git a/packages/backend-common/src/database/sqlite3.test.ts b/packages/backend-common/src/database/sqlite3.test.ts
new file mode 100644
index 0000000000..a25720b81c
--- /dev/null
+++ b/packages/backend-common/src/database/sqlite3.test.ts
@@ -0,0 +1,84 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { ConfigReader } from '@backstage/config';
+import { buildSqlite3DatabaseConfig, createSqlite3Database } from './sqlite3';
+
+describe('sqlite3', () => {
+ const createConfig = (connection: any) =>
+ ConfigReader.fromConfigs([
+ {
+ context: '',
+ data: {
+ client: 'sqlite3',
+ connection,
+ },
+ },
+ ]);
+
+ describe(buildSqlite3DatabaseConfig, () => {
+ it('buidls a string connection', () => {
+ expect(buildSqlite3DatabaseConfig(createConfig(':memory:'))).toEqual({
+ client: 'sqlite3',
+ connection: ':memory:',
+ useNullAsDefault: true,
+ });
+ });
+
+ it('builds a filename connection', () => {
+ expect(
+ buildSqlite3DatabaseConfig(
+ createConfig({
+ filename: '/path/to/foo',
+ }),
+ ),
+ ).toEqual({
+ client: 'sqlite3',
+ connection: {
+ filename: '/path/to/foo',
+ },
+ useNullAsDefault: true,
+ });
+ });
+
+ it('replaces the connection with an override', () => {
+ expect(
+ buildSqlite3DatabaseConfig(createConfig(':memory:'), {
+ connection: { filename: '/path/to/foo' },
+ }),
+ ).toEqual({
+ client: 'sqlite3',
+ connection: {
+ filename: '/path/to/foo',
+ },
+ useNullAsDefault: true,
+ });
+ });
+ });
+
+ describe(createSqlite3Database, () => {
+ it('creates an in memory knex instance', () => {
+ expect(
+ createSqlite3Database(
+ createConfig({
+ client: 'sqlite3',
+ connection: ':memory:',
+ }),
+ ),
+ ).toBeTruthy();
+ });
+ });
+});
diff --git a/packages/backend-common/src/database/sqlite3.ts b/packages/backend-common/src/database/sqlite3.ts
new file mode 100644
index 0000000000..6249394d05
--- /dev/null
+++ b/packages/backend-common/src/database/sqlite3.ts
@@ -0,0 +1,58 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import knex from 'knex';
+import { ConfigReader } from '@backstage/config';
+import { mergeDatabaseConfig } from './config';
+
+/**
+ * Creates a knex sqlite3 database connection
+ *
+ * @param dbConfig The database config
+ * @param overrides Additional options to merge with the config
+ */
+export function createSqlite3Database(
+ dbConfig: ConfigReader,
+ overrides?: knex.Config,
+) {
+ const knexConfig = buildSqlite3DatabaseConfig(dbConfig, overrides);
+ const database = knex(knexConfig);
+
+ database.client.pool.on('createSuccess', (_eventId: any, resource: any) => {
+ resource.run('PRAGMA foreign_keys = ON', () => {});
+ });
+
+ return database;
+}
+
+/**
+ * Builds a knex sqlite3 connection config
+ *
+ * @param dbConfig The database config
+ * @param overrides Additional options to merge with the config
+ */
+export function buildSqlite3DatabaseConfig(
+ dbConfig: ConfigReader,
+ overrides?: knex.Config,
+) {
+ return mergeDatabaseConfig(
+ dbConfig.get(),
+ {
+ useNullAsDefault: true,
+ },
+ overrides,
+ );
+}
diff --git a/packages/backend-common/src/index.ts b/packages/backend-common/src/index.ts
index a3f57ed9df..f499613851 100644
--- a/packages/backend-common/src/index.ts
+++ b/packages/backend-common/src/index.ts
@@ -15,6 +15,7 @@
*/
export * from './config';
+export * from './database';
export * from './errors';
export * from './logging';
export * from './middleware';
diff --git a/packages/backend-common/src/service/lib/ServiceBuilderImpl.ts b/packages/backend-common/src/service/lib/ServiceBuilderImpl.ts
index 4a51fb195c..cd8e445dd8 100644
--- a/packages/backend-common/src/service/lib/ServiceBuilderImpl.ts
+++ b/packages/backend-common/src/service/lib/ServiceBuilderImpl.ts
@@ -33,7 +33,8 @@ import { ServiceBuilder } from '../types';
import { readBaseOptions, readCorsOptions } from './config';
const DEFAULT_PORT = 7000;
-const DEFAULT_HOST = 'localhost';
+// '' is express default, which listens to all interfaces
+const DEFAULT_HOST = '';
export class ServiceBuilderImpl implements ServiceBuilder {
private port: number | undefined;
diff --git a/packages/backend-common/src/service/lib/config.ts b/packages/backend-common/src/service/lib/config.ts
index 064eacc4f2..49f8dc4f04 100644
--- a/packages/backend-common/src/service/lib/config.ts
+++ b/packages/backend-common/src/service/lib/config.ts
@@ -37,11 +37,18 @@ export type BaseOptions = {
* ```
*/
export function readBaseOptions(config: ConfigReader): BaseOptions {
- // TODO(freben): Expand this to support more addresses and perhaps optional
- const { host, port } = parseListenAddress(config.getString('listen'));
+ if (typeof config.get('listen') === 'string') {
+ // TODO(freben): Expand this to support more addresses and perhaps optional
+ const { host, port } = parseListenAddress(config.getString('listen'));
+ return removeUnknown({
+ listenPort: port,
+ listenHost: host,
+ });
+ }
+
return removeUnknown({
- listenPort: port,
- listenHost: host,
+ listenPort: config.getOptionalNumber('listen.port'),
+ listenHost: config.getOptionalString('listen.host'),
});
}
diff --git a/packages/backend/package.json b/packages/backend/package.json
index 6e1bcdaf69..c80fbc7c38 100644
--- a/packages/backend/package.json
+++ b/packages/backend/package.json
@@ -35,6 +35,7 @@
"express": "^4.17.1",
"knex": "^0.21.1",
"pg": "^8.3.0",
+ "pg-connection-string": "^2.3.0",
"sqlite3": "^4.2.0",
"winston": "^3.2.1"
},
diff --git a/packages/backend/src/index.ts b/packages/backend/src/index.ts
index 261a4d2894..50f59795fc 100644
--- a/packages/backend/src/index.ts
+++ b/packages/backend/src/index.ts
@@ -23,13 +23,13 @@
*/
import {
+ createDatabase,
createServiceBuilder,
loadBackendConfig,
getRootLogger,
useHotMemoize,
} from '@backstage/backend-common';
import { ConfigReader, AppConfig } from '@backstage/config';
-import knex, { PgConnectionConfig } from 'knex';
import healthcheck from './plugins/healthcheck';
import auth from './plugins/auth';
import catalog from './plugins/catalog';
@@ -47,38 +47,10 @@ function makeCreateEnv(loadedConfigs: AppConfig[]) {
return (plugin: string): PluginEnvironment => {
const logger = getRootLogger().child({ type: 'plugin', plugin });
- // Supported DBs are sqlite and postgres
- const isPg = [
- 'POSTGRES_USER',
- 'POSTGRES_HOST',
- 'POSTGRES_PASSWORD',
- ].every(key => config.getOptional(`backend.${key}`));
-
- let knexConfig;
-
- if (isPg) {
- knexConfig = {
- client: 'pg',
- useNullAsDefault: true,
- connection: {
- port: config.getOptionalNumber('backend.POSTGRES_PORT'),
- host: config.getString('backend.POSTGRES_HOST'),
- user: config.getString('backend.POSTGRES_USER'),
- password: config.getString('backend.POSTGRES_PASSWORD'),
- database: `backstage_plugin_${plugin}`,
- } as PgConnectionConfig,
- };
- } else {
- knexConfig = {
- client: 'sqlite3',
- connection: ':memory:',
- useNullAsDefault: true,
- };
- }
-
- const database = knex(knexConfig);
- database.client.pool.on('createSuccess', (_eventId: any, resource: any) => {
- resource.run('PRAGMA foreign_keys = ON', () => {});
+ const database = createDatabase(config.getConfig('backend.database'), {
+ connection: {
+ database: `backstage_plugin_${plugin}`,
+ },
});
return { logger, database, config };
};
@@ -121,6 +93,6 @@ async function main() {
module.hot?.accept();
main().catch(error => {
- console.error(`Backend failed to start up, ${error}`);
+ console.error('Backend failed to start up', error);
process.exit(1);
});
diff --git a/packages/backend/src/plugins/catalog.ts b/packages/backend/src/plugins/catalog.ts
index 41e4226001..fdac6dd938 100644
--- a/packages/backend/src/plugins/catalog.ts
+++ b/packages/backend/src/plugins/catalog.ts
@@ -29,8 +29,9 @@ import { useHotCleanup } from '@backstage/backend-common';
export default async function createPlugin({
logger,
database,
+ config,
}: PluginEnvironment) {
- const locationReader = new LocationReaders(logger);
+ const locationReader = new LocationReaders({ logger, config });
const db = await DatabaseManager.createDatabase(database, { logger });
const entitiesCatalog = new DatabaseEntitiesCatalog(db);
diff --git a/packages/backend/src/plugins/rollbar.ts b/packages/backend/src/plugins/rollbar.ts
index 8899251db2..c6a2c27e9b 100644
--- a/packages/backend/src/plugins/rollbar.ts
+++ b/packages/backend/src/plugins/rollbar.ts
@@ -17,6 +17,9 @@
import { createRouter } from '@backstage/plugin-rollbar-backend';
import type { PluginEnvironment } from '../types';
-export default async function createPlugin({ logger }: PluginEnvironment) {
- return await createRouter({ logger });
+export default async function createPlugin({
+ logger,
+ config,
+}: PluginEnvironment) {
+ return await createRouter({ logger, config });
}
diff --git a/packages/catalog-model/examples/hello-world-api.yaml b/packages/catalog-model/examples/hello-world-api.yaml
new file mode 100644
index 0000000000..298b0cb835
--- /dev/null
+++ b/packages/catalog-model/examples/hello-world-api.yaml
@@ -0,0 +1,46 @@
+apiVersion: backstage.io/v1alpha1
+kind: API
+metadata:
+ name: hello-world
+ description: Hello World example for gRPC
+spec:
+ type: grpc
+ definition: |
+ // Copyright 2015 gRPC authors.
+ //
+ // Licensed under the Apache License, Version 2.0 (the "License");
+ // you may not use this file except in compliance with the License.
+ // You may obtain a copy of the License at
+ //
+ // http://www.apache.org/licenses/LICENSE-2.0
+ //
+ // Unless required by applicable law or agreed to in writing, software
+ // distributed under the License is distributed on an "AS IS" BASIS,
+ // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ // See the License for the specific language governing permissions and
+ // limitations under the License.
+
+ syntax = "proto3";
+
+ option java_multiple_files = true;
+ option java_package = "io.grpc.examples.helloworld";
+ option java_outer_classname = "HelloWorldProto";
+ option objc_class_prefix = "HLW";
+
+ package helloworld;
+
+ // The greeting service definition.
+ service Greeter {
+ // Sends a greeting
+ rpc SayHello (HelloRequest) returns (HelloReply) {}
+ }
+
+ // The request message containing the user's name.
+ message HelloRequest {
+ string name = 1;
+ }
+
+ // The response message containing the greetings
+ message HelloReply {
+ string message = 1;
+ }
diff --git a/packages/catalog-model/examples/petstore-api.yaml b/packages/catalog-model/examples/petstore-api.yaml
new file mode 100644
index 0000000000..01953a4a97
--- /dev/null
+++ b/packages/catalog-model/examples/petstore-api.yaml
@@ -0,0 +1,119 @@
+apiVersion: backstage.io/v1alpha1
+kind: API
+metadata:
+ name: petstore
+ description: The petstore API
+spec:
+ type: openapi
+ definition: |
+ openapi: "3.0.0"
+ info:
+ version: 1.0.0
+ title: Swagger Petstore
+ license:
+ name: MIT
+ servers:
+ - url: http://petstore.swagger.io/v1
+ paths:
+ /pets:
+ get:
+ summary: List all pets
+ operationId: listPets
+ tags:
+ - pets
+ parameters:
+ - name: limit
+ in: query
+ description: How many items to return at one time (max 100)
+ required: false
+ schema:
+ type: integer
+ format: int32
+ responses:
+ '200':
+ description: A paged array of pets
+ headers:
+ x-next:
+ description: A link to the next page of responses
+ schema:
+ type: string
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Pets"
+ default:
+ description: unexpected error
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Error"
+ post:
+ summary: Create a pet
+ operationId: createPets
+ tags:
+ - pets
+ responses:
+ '201':
+ description: Null response
+ default:
+ description: unexpected error
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Error"
+ /pets/{petId}:
+ get:
+ summary: Info for a specific pet
+ operationId: showPetById
+ tags:
+ - pets
+ parameters:
+ - name: petId
+ in: path
+ required: true
+ description: The id of the pet to retrieve
+ schema:
+ type: string
+ responses:
+ '200':
+ description: Expected response to a valid request
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Pet"
+ default:
+ description: unexpected error
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Error"
+ components:
+ schemas:
+ Pet:
+ type: object
+ required:
+ - id
+ - name
+ properties:
+ id:
+ type: integer
+ format: int64
+ name:
+ type: string
+ tag:
+ type: string
+ Pets:
+ type: array
+ items:
+ $ref: "#/components/schemas/Pet"
+ Error:
+ type: object
+ required:
+ - code
+ - message
+ properties:
+ code:
+ type: integer
+ format: int32
+ message:
+ type: string
diff --git a/packages/catalog-model/examples/petstore-component.yaml b/packages/catalog-model/examples/petstore-component.yaml
new file mode 100644
index 0000000000..5cf0d1f270
--- /dev/null
+++ b/packages/catalog-model/examples/petstore-component.yaml
@@ -0,0 +1,13 @@
+apiVersion: backstage.io/v1alpha1
+kind: Component
+metadata:
+ name: petstore
+ description: Petstore
+spec:
+ type: service
+ lifecycle: experimental
+ owner: pets@example.com
+ implementedApis:
+ - petstore
+ - streetlights
+ - hello-world
diff --git a/packages/catalog-model/examples/streetlights-api.yaml b/packages/catalog-model/examples/streetlights-api.yaml
new file mode 100644
index 0000000000..69a6d101cb
--- /dev/null
+++ b/packages/catalog-model/examples/streetlights-api.yaml
@@ -0,0 +1,217 @@
+apiVersion: backstage.io/v1alpha1
+kind: API
+metadata:
+ name: streetlights
+ description: The Smartylighting Streetlights API allows you to remotely manage the city lights.
+spec:
+ type: asyncapi
+ definition: |
+ asyncapi: 2.0.0
+ info:
+ title: Streetlights API
+ version: '1.0.0'
+ description: |
+ The Smartylighting Streetlights API allows you to remotely manage the city lights.
+
+ ### Check out its awesome features:
+
+ * Turn a specific streetlight on/off ๐
+ * Dim a specific streetlight ๐
+ * Receive real-time information about environmental lighting conditions ๐
+ license:
+ name: Apache 2.0
+ url: https://www.apache.org/licenses/LICENSE-2.0
+
+ servers:
+ production:
+ url: api.streetlights.smartylighting.com:{port}
+ protocol: mqtt
+ description: Test broker
+ variables:
+ port:
+ description: Secure connection (TLS) is available through port 8883.
+ default: '1883'
+ enum:
+ - '1883'
+ - '8883'
+ security:
+ - apiKey: []
+ - supportedOauthFlows:
+ - streetlights:on
+ - streetlights:off
+ - streetlights:dim
+ - openIdConnectWellKnown: []
+
+ defaultContentType: application/json
+
+ channels:
+ smartylighting/streetlights/1/0/event/{streetlightId}/lighting/measured:
+ description: The topic on which measured values may be produced and consumed.
+ parameters:
+ streetlightId:
+ $ref: '#/components/parameters/streetlightId'
+ subscribe:
+ summary: Receive information about environmental lighting conditions of a particular streetlight.
+ operationId: receiveLightMeasurement
+ traits:
+ - $ref: '#/components/operationTraits/kafka'
+ message:
+ $ref: '#/components/messages/lightMeasured'
+
+ smartylighting/streetlights/1/0/action/{streetlightId}/turn/on:
+ parameters:
+ streetlightId:
+ $ref: '#/components/parameters/streetlightId'
+ publish:
+ operationId: turnOn
+ traits:
+ - $ref: '#/components/operationTraits/kafka'
+ message:
+ $ref: '#/components/messages/turnOnOff'
+
+ smartylighting/streetlights/1/0/action/{streetlightId}/turn/off:
+ parameters:
+ streetlightId:
+ $ref: '#/components/parameters/streetlightId'
+ publish:
+ operationId: turnOff
+ traits:
+ - $ref: '#/components/operationTraits/kafka'
+ message:
+ $ref: '#/components/messages/turnOnOff'
+
+ smartylighting/streetlights/1/0/action/{streetlightId}/dim:
+ parameters:
+ streetlightId:
+ $ref: '#/components/parameters/streetlightId'
+ publish:
+ operationId: dimLight
+ traits:
+ - $ref: '#/components/operationTraits/kafka'
+ message:
+ $ref: '#/components/messages/dimLight'
+
+ components:
+ messages:
+ lightMeasured:
+ name: lightMeasured
+ title: Light measured
+ summary: Inform about environmental lighting conditions for a particular streetlight.
+ contentType: application/json
+ traits:
+ - $ref: '#/components/messageTraits/commonHeaders'
+ payload:
+ $ref: "#/components/schemas/lightMeasuredPayload"
+ turnOnOff:
+ name: turnOnOff
+ title: Turn on/off
+ summary: Command a particular streetlight to turn the lights on or off.
+ traits:
+ - $ref: '#/components/messageTraits/commonHeaders'
+ payload:
+ $ref: "#/components/schemas/turnOnOffPayload"
+ dimLight:
+ name: dimLight
+ title: Dim light
+ summary: Command a particular streetlight to dim the lights.
+ traits:
+ - $ref: '#/components/messageTraits/commonHeaders'
+ payload:
+ $ref: "#/components/schemas/dimLightPayload"
+
+ schemas:
+ lightMeasuredPayload:
+ type: object
+ properties:
+ lumens:
+ type: integer
+ minimum: 0
+ description: Light intensity measured in lumens.
+ sentAt:
+ $ref: "#/components/schemas/sentAt"
+ turnOnOffPayload:
+ type: object
+ properties:
+ command:
+ type: string
+ enum:
+ - on
+ - off
+ description: Whether to turn on or off the light.
+ sentAt:
+ $ref: "#/components/schemas/sentAt"
+ dimLightPayload:
+ type: object
+ properties:
+ percentage:
+ type: integer
+ description: Percentage to which the light should be dimmed to.
+ minimum: 0
+ maximum: 100
+ sentAt:
+ $ref: "#/components/schemas/sentAt"
+ sentAt:
+ type: string
+ format: date-time
+ description: Date and time when the message was sent.
+
+ securitySchemes:
+ apiKey:
+ type: apiKey
+ in: user
+ description: Provide your API key as the user and leave the password empty.
+ supportedOauthFlows:
+ type: oauth2
+ description: Flows to support OAuth 2.0
+ flows:
+ implicit:
+ authorizationUrl: 'https://authserver.example/auth'
+ scopes:
+ 'streetlights:on': Ability to switch lights on
+ 'streetlights:off': Ability to switch lights off
+ 'streetlights:dim': Ability to dim the lights
+ password:
+ tokenUrl: 'https://authserver.example/token'
+ scopes:
+ 'streetlights:on': Ability to switch lights on
+ 'streetlights:off': Ability to switch lights off
+ 'streetlights:dim': Ability to dim the lights
+ clientCredentials:
+ tokenUrl: 'https://authserver.example/token'
+ scopes:
+ 'streetlights:on': Ability to switch lights on
+ 'streetlights:off': Ability to switch lights off
+ 'streetlights:dim': Ability to dim the lights
+ authorizationCode:
+ authorizationUrl: 'https://authserver.example/auth'
+ tokenUrl: 'https://authserver.example/token'
+ refreshUrl: 'https://authserver.example/refresh'
+ scopes:
+ 'streetlights:on': Ability to switch lights on
+ 'streetlights:off': Ability to switch lights off
+ 'streetlights:dim': Ability to dim the lights
+ openIdConnectWellKnown:
+ type: openIdConnect
+ openIdConnectUrl: 'https://authserver.example/.well-known'
+
+ parameters:
+ streetlightId:
+ description: The ID of the streetlight.
+ schema:
+ type: string
+
+ messageTraits:
+ commonHeaders:
+ headers:
+ type: object
+ properties:
+ my-app-header:
+ type: integer
+ minimum: 0
+ maximum: 100
+
+ operationTraits:
+ kafka:
+ bindings:
+ kafka:
+ clientId: my-app-id
diff --git a/packages/catalog-model/src/EntityPolicies.ts b/packages/catalog-model/src/EntityPolicies.ts
index 3dc7deae7c..8cc51e5aa8 100644
--- a/packages/catalog-model/src/EntityPolicies.ts
+++ b/packages/catalog-model/src/EntityPolicies.ts
@@ -23,7 +23,9 @@ import {
SchemaValidEntityPolicy,
} from './entity';
import {
+ ApiEntityV1alpha1Policy,
ComponentEntityV1alpha1Policy,
+ GroupEntityV1alpha1Policy,
LocationEntityV1alpha1Policy,
TemplateEntityV1alpha1Policy,
} from './kinds';
@@ -74,8 +76,10 @@ export class EntityPolicies implements EntityPolicy {
]),
EntityPolicies.anyOf([
new ComponentEntityV1alpha1Policy(),
+ new GroupEntityV1alpha1Policy(),
new LocationEntityV1alpha1Policy(),
new TemplateEntityV1alpha1Policy(),
+ new ApiEntityV1alpha1Policy(),
]),
]);
}
diff --git a/packages/catalog-model/src/kinds/ApiEntityV1alpha1.test.ts b/packages/catalog-model/src/kinds/ApiEntityV1alpha1.test.ts
new file mode 100644
index 0000000000..48de569213
--- /dev/null
+++ b/packages/catalog-model/src/kinds/ApiEntityV1alpha1.test.ts
@@ -0,0 +1,126 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { EntityPolicy } from '../types';
+import {
+ ApiEntityV1alpha1,
+ ApiEntityV1alpha1Policy,
+} from './ApiEntityV1alpha1';
+
+describe('ApiV1alpha1Policy', () => {
+ let entity: ApiEntityV1alpha1;
+ let policy: EntityPolicy;
+
+ beforeEach(() => {
+ entity = {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: {
+ name: 'test',
+ },
+ spec: {
+ type: 'openapi',
+ definition: `
+openapi: "3.0.0"
+info:
+ version: 1.0.0
+ title: Swagger Petstore
+paths:
+ /pets:
+ get:
+ summary: List all pets
+ operationId: listPets
+ responses:
+ '200':
+ description: A paged array of pets
+ content:
+ application/json:
+ schema:
+ $ref: "#/components/schemas/Pets"
+components:
+ schemas:
+ Pet:
+ type: object
+ required:
+ - id
+ - name
+ properties:
+ id:
+ type: integer
+ format: int64
+ name:
+ type: string
+ tag:
+ type: string
+ Pets:
+ type: array
+ items:
+ $ref: "#/components/schemas/Pet"
+`,
+ },
+ };
+ policy = new ApiEntityV1alpha1Policy();
+ });
+
+ it('happy path: accepts valid data', async () => {
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('silently accepts v1beta1 as well', async () => {
+ (entity as any).apiVersion = 'backstage.io/v1beta1';
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('rejects unknown apiVersion', async () => {
+ (entity as any).apiVersion = 'backstage.io/v1beta0';
+ await expect(policy.enforce(entity)).rejects.toThrow(/apiVersion/);
+ });
+
+ it('rejects unknown kind', async () => {
+ (entity as any).kind = 'Wizard';
+ await expect(policy.enforce(entity)).rejects.toThrow(/kind/);
+ });
+
+ it('rejects missing type', async () => {
+ delete (entity as any).spec.type;
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('rejects wrong type', async () => {
+ (entity as any).spec.type = 7;
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('rejects empty type', async () => {
+ (entity as any).spec.type = '';
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('rejects missing definition', async () => {
+ delete (entity as any).spec.definition;
+ await expect(policy.enforce(entity)).rejects.toThrow(/definition/);
+ });
+
+ it('rejects wrong definition', async () => {
+ (entity as any).spec.definition = 7;
+ await expect(policy.enforce(entity)).rejects.toThrow(/definition/);
+ });
+
+ it('rejects empty definition', async () => {
+ (entity as any).spec.definition = '';
+ await expect(policy.enforce(entity)).rejects.toThrow(/definition/);
+ });
+});
diff --git a/packages/catalog-model/src/kinds/ApiEntityV1alpha1.ts b/packages/catalog-model/src/kinds/ApiEntityV1alpha1.ts
new file mode 100644
index 0000000000..59e16df9a7
--- /dev/null
+++ b/packages/catalog-model/src/kinds/ApiEntityV1alpha1.ts
@@ -0,0 +1,52 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import * as yup from 'yup';
+import type { Entity } from '../entity/Entity';
+import type { EntityPolicy } from '../types';
+
+const API_VERSION = ['backstage.io/v1alpha1', 'backstage.io/v1beta1'] as const;
+const KIND = 'API' as const;
+
+export interface ApiEntityV1alpha1 extends Entity {
+ apiVersion: typeof API_VERSION[number];
+ kind: typeof KIND;
+ spec: {
+ type: string;
+ definition: string;
+ };
+}
+
+export class ApiEntityV1alpha1Policy implements EntityPolicy {
+ private schema: yup.Schema;
+
+ constructor() {
+ this.schema = yup.object>({
+ apiVersion: yup.string().required().oneOf(API_VERSION),
+ kind: yup.string().required().equals([KIND]),
+ spec: yup
+ .object({
+ type: yup.string().required().min(1),
+ definition: yup.string().required().min(1),
+ })
+ .required(),
+ });
+ }
+
+ async enforce(envelope: Entity): Promise {
+ return await this.schema.validate(envelope, { strict: true });
+ }
+}
diff --git a/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.test.ts b/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.test.ts
index a60bb2606b..e784934d48 100644
--- a/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.test.ts
+++ b/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.test.ts
@@ -35,6 +35,7 @@ describe('ComponentV1alpha1Policy', () => {
type: 'service',
lifecycle: 'production',
owner: 'me',
+ implementsApis: ['api-0'],
},
};
policy = new ComponentEntityV1alpha1Policy();
diff --git a/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.ts b/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.ts
index 68cf0c61bb..38b9c27720 100644
--- a/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.ts
+++ b/packages/catalog-model/src/kinds/ComponentEntityV1alpha1.ts
@@ -28,6 +28,7 @@ export interface ComponentEntityV1alpha1 extends Entity {
type: string;
lifecycle: string;
owner: string;
+ implementsApis?: string[];
};
}
@@ -43,6 +44,7 @@ export class ComponentEntityV1alpha1Policy implements EntityPolicy {
type: yup.string().required().min(1),
lifecycle: yup.string().required().min(1),
owner: yup.string().required().min(1),
+ implementsApis: yup.array(yup.string()).notRequired(),
})
.required(),
});
diff --git a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts
new file mode 100644
index 0000000000..94dcc2f14f
--- /dev/null
+++ b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.test.ts
@@ -0,0 +1,120 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { EntityPolicy } from '../types';
+import {
+ GroupEntityV1alpha1,
+ GroupEntityV1alpha1Policy,
+} from './GroupEntityV1alpha1';
+
+describe('GroupV1alpha1Policy', () => {
+ let entity: GroupEntityV1alpha1;
+ let policy: EntityPolicy;
+
+ beforeEach(() => {
+ entity = {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'Group',
+ metadata: {
+ name: 'doe-squad',
+ title: 'Doe Squad',
+ description: 'A squad for John and Jane',
+ },
+ spec: {
+ type: 'squad',
+ parent: 'group-a',
+ ancestors: ['group-a', 'global-synergies', 'acme-corp'],
+ children: ['child-a', 'child-b'],
+ descendants: ['desc-a', 'desc-b'],
+ },
+ };
+ policy = new GroupEntityV1alpha1Policy();
+ });
+
+ it('happy path: accepts valid data', async () => {
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('silently accepts v1beta1 as well', async () => {
+ (entity as any).apiVersion = 'backstage.io/v1beta1';
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('rejects unknown apiVersion', async () => {
+ (entity as any).apiVersion = 'backstage.io/v1beta0';
+ await expect(policy.enforce(entity)).rejects.toThrow(/apiVersion/);
+ });
+
+ it('rejects unknown kind', async () => {
+ (entity as any).kind = 'Wizard';
+ await expect(policy.enforce(entity)).rejects.toThrow(/kind/);
+ });
+
+ it('rejects missing type', async () => {
+ delete (entity as any).spec.type;
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('rejects wrong type', async () => {
+ (entity as any).spec.type = 7;
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('rejects empty type', async () => {
+ (entity as any).spec.type = '';
+ await expect(policy.enforce(entity)).rejects.toThrow(/type/);
+ });
+
+ it('accepts missing parent', async () => {
+ delete (entity as any).spec.parent;
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('rejects empty parent', async () => {
+ (entity as any).spec.parent = '';
+ await expect(policy.enforce(entity)).rejects.toThrow(/parent/);
+ });
+
+ it('rejects missing ancestors', async () => {
+ delete (entity as any).spec.ancestors;
+ await expect(policy.enforce(entity)).rejects.toThrow(/ancestor/);
+ });
+
+ it('accepts empty ancestors', async () => {
+ (entity as any).spec.ancestors = [''];
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('rejects missing children', async () => {
+ delete (entity as any).spec.children;
+ await expect(policy.enforce(entity)).rejects.toThrow(/children/);
+ });
+
+ it('accepts empty children', async () => {
+ (entity as any).spec.children = [''];
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+
+ it('rejects missing descendants', async () => {
+ delete (entity as any).spec.descendants;
+ await expect(policy.enforce(entity)).rejects.toThrow(/descendants/);
+ });
+
+ it('accepts empty descendants', async () => {
+ (entity as any).spec.descendants = [''];
+ await expect(policy.enforce(entity)).resolves.toBe(entity);
+ });
+});
diff --git a/packages/catalog-model/src/kinds/GroupEntityV1alpha1.ts b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.ts
new file mode 100644
index 0000000000..c1d39d5b44
--- /dev/null
+++ b/packages/catalog-model/src/kinds/GroupEntityV1alpha1.ts
@@ -0,0 +1,58 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import * as yup from 'yup';
+import type { Entity } from '../entity/Entity';
+import type { EntityPolicy } from '../types';
+
+const API_VERSION = ['backstage.io/v1alpha1', 'backstage.io/v1beta1'] as const;
+const KIND = 'Group' as const;
+
+export interface GroupEntityV1alpha1 extends Entity {
+ apiVersion: typeof API_VERSION[number];
+ kind: typeof KIND;
+ spec: {
+ type: string;
+ parent?: string;
+ ancestors: string[];
+ children: string[];
+ descendants: string[];
+ };
+}
+
+export class GroupEntityV1alpha1Policy implements EntityPolicy {
+ private schema: yup.Schema;
+
+ constructor() {
+ this.schema = yup.object>({
+ apiVersion: yup.string().required().oneOf(API_VERSION),
+ kind: yup.string().required().equals([KIND]),
+ spec: yup
+ .object({
+ type: yup.string().required().min(1),
+ parent: yup.string().notRequired().min(1),
+ ancestors: yup.array(yup.string()).required(),
+ children: yup.array(yup.string()).required(),
+ descendants: yup.array(yup.string()).required(),
+ })
+ .required(),
+ });
+ }
+
+ async enforce(envelope: Entity): Promise {
+ return await this.schema.validate(envelope, { strict: true });
+ }
+}
diff --git a/packages/catalog-model/src/kinds/index.ts b/packages/catalog-model/src/kinds/index.ts
index b5fad184d4..6e8d27d204 100644
--- a/packages/catalog-model/src/kinds/index.ts
+++ b/packages/catalog-model/src/kinds/index.ts
@@ -19,6 +19,11 @@ export type {
ComponentEntityV1alpha1 as ComponentEntity,
ComponentEntityV1alpha1,
} from './ComponentEntityV1alpha1';
+export { GroupEntityV1alpha1Policy } from './GroupEntityV1alpha1';
+export type {
+ GroupEntityV1alpha1 as GroupEntity,
+ GroupEntityV1alpha1,
+} from './GroupEntityV1alpha1';
export { LocationEntityV1alpha1Policy } from './LocationEntityV1alpha1';
export type {
LocationEntityV1alpha1 as LocationEntity,
@@ -29,3 +34,8 @@ export type {
TemplateEntityV1alpha1 as TemplateEntity,
TemplateEntityV1alpha1,
} from './TemplateEntityV1alpha1';
+export { ApiEntityV1alpha1Policy } from './ApiEntityV1alpha1';
+export type {
+ ApiEntityV1alpha1 as ApiEntity,
+ ApiEntityV1alpha1,
+} from './ApiEntityV1alpha1';
diff --git a/packages/cli/README.md b/packages/cli/README.md
index 373d0d1073..8868e699c8 100644
--- a/packages/cli/README.md
+++ b/packages/cli/README.md
@@ -20,12 +20,12 @@ $ yarn add @backstage/cli
For local development the cli can be used directly, even from other packages in this repo. The `bin/backstage-cli` entrypoint contains a switch that will load the implementation from the `src` directory when executed inside this repo.
-To run the cli in watch mode, use `yarn start `. For example `yarn start create-app --help`.
+To run the cli in watch mode, use `yarn start `. For example `yarn start lint --help`.
-To try out the `create-app` command locally, you can execute the following from the parent directory of this repo:
+To try out the command locally, you can execute the following from the parent directory of this repo:
```bash
-./backstage/packages/cli/bin/backstage-cli create-app
+./backstage/packages/cli/bin/backstage-cli --help
```
## Documentation
diff --git a/packages/cli/bin/backstage-cli b/packages/cli/bin/backstage-cli
index 2b445ca9af..a065b8ac5a 100755
--- a/packages/cli/bin/backstage-cli
+++ b/packages/cli/bin/backstage-cli
@@ -25,6 +25,7 @@ if (!isLocal || process.env.BACKSTAGE_E2E_CLI_TEST) {
} else {
require('ts-node').register({
transpileOnly: true,
+ project: path.resolve(__dirname, '../../../tsconfig.json'),
compilerOptions: {
module: 'CommonJS',
},
diff --git a/packages/cli/config/jest.js b/packages/cli/config/jest.js
index da9b3ec3e6..77d3a84e82 100644
--- a/packages/cli/config/jest.js
+++ b/packages/cli/config/jest.js
@@ -48,8 +48,9 @@ async function getConfig() {
// Default behaviour is to not apply transforms for node_modules, but we still want
// to apply the esm-transformer to .esm.js files, since that's what we use in backstage packages.
+ // The @kyma-project/asyncapi-react library needs to be transformed.
transformIgnorePatterns: [
- '/node_modules/(?!.*\\.(?:esm\\.js|bmp|gif|jpg|jpeg|png|frag|xml|svg)$)',
+ '/node_modules/(?!@kyma-project/asyncapi-react/)(?!.*\\.(?:esm\\.js|bmp|gif|jpg|jpeg|png|frag|xml|svg)$)',
],
};
diff --git a/packages/cli/e2e-test/helpers.js b/packages/cli/e2e-test/helpers.js
index 84807119c3..580f53cbe8 100644
--- a/packages/cli/e2e-test/helpers.js
+++ b/packages/cli/e2e-test/helpers.js
@@ -60,6 +60,9 @@ async function runPlain(cmd, options) {
});
return stdout.trim();
} catch (error) {
+ if (error.stdout) {
+ process.stdout.write(error.stdout);
+ }
if (error.stderr) {
process.stderr.write(error.stderr);
}
diff --git a/packages/cli/package.json b/packages/cli/package.json
index cc5b3edc9b..3c9f85ac30 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -47,7 +47,7 @@
"@svgr/webpack": "4.3.x",
"@types/start-server-webpack-plugin": "^2.2.0",
"@types/webpack-env": "^1.15.2",
- "@types/webpack-node-externals": "^1.7.1",
+ "@types/webpack-node-externals": "^2.5.0",
"bfj": "^7.0.2",
"chalk": "^4.0.0",
"chokidar": "^3.3.1",
@@ -95,7 +95,7 @@
"url-loader": "^4.1.0",
"webpack": "^4.41.6",
"webpack-dev-server": "^3.10.3",
- "webpack-node-externals": "^1.7.2",
+ "webpack-node-externals": "^2.5.0",
"yaml": "^1.10.0",
"yml-loader": "^2.1.0",
"yn": "^4.0.0"
diff --git a/packages/cli/src/commands/config/print.ts b/packages/cli/src/commands/config/print.ts
new file mode 100644
index 0000000000..bb626f520f
--- /dev/null
+++ b/packages/cli/src/commands/config/print.ts
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Command } from 'commander';
+import { loadConfig } from '@backstage/config-loader';
+import { ConfigReader } from '@backstage/config';
+import { paths } from '../../lib/paths';
+import { stringify as stringifyYaml } from 'yaml';
+
+export default async (cmd: Command) => {
+ const appConfigs = await loadConfig({
+ env: cmd.env ?? process.env.NODE_ENV ?? 'development',
+ shouldReadSecrets: cmd.withSecrets ?? false,
+ rootPaths: [paths.targetRoot, paths.targetDir],
+ });
+
+ const flatConfig = ConfigReader.fromConfigs(appConfigs).get();
+
+ if (cmd.format === 'json') {
+ process.stdout.write(`${JSON.stringify(flatConfig, null, 2)}\n`);
+ } else {
+ process.stdout.write(`${stringifyYaml(flatConfig)}\n`);
+ }
+};
diff --git a/packages/cli/src/commands/create-plugin/createPlugin.ts b/packages/cli/src/commands/create-plugin/createPlugin.ts
index 1898285a22..47b883882b 100644
--- a/packages/cli/src/commands/create-plugin/createPlugin.ts
+++ b/packages/cli/src/commands/create-plugin/createPlugin.ts
@@ -27,7 +27,6 @@ import {
getCodeownersFilePath,
} from '../../lib/codeowners';
import { paths } from '../../lib/paths';
-import { version } from '../../lib/version';
import { Task, templatingTask } from '../../lib/tasks';
const exec = promisify(execCb);
@@ -142,7 +141,12 @@ async function cleanUp(tempDir: string) {
}
async function buildPlugin(pluginFolder: string) {
- const commands = ['yarn install', 'yarn tsc', 'yarn build'];
+ const commands = [
+ 'yarn install',
+ 'yarn lint --fix',
+ 'yarn tsc',
+ 'yarn build',
+ ];
for (const command of commands) {
await Task.forItem('executing', command, async () => {
process.chdir(pluginFolder);
@@ -222,6 +226,7 @@ export default async () => {
const tempDir = resolvePath(os.tmpdir(), answers.id);
const pluginDir = paths.resolveTargetRoot('plugins', answers.id);
const ownerIds = parseOwnerIds(answers.owner);
+ const { version } = await fs.readJson(paths.resolveTargetRoot('lerna.json'));
Task.log();
Task.log('Creating the plugin...');
diff --git a/packages/cli/src/index.ts b/packages/cli/src/index.ts
index 3123cda613..4b9dc4bab7 100644
--- a/packages/cli/src/index.ts
+++ b/packages/cli/src/index.ts
@@ -124,6 +124,20 @@ const main = (argv: string[]) => {
.description('Run tests, forwarding args to Jest, defaulting to watch mode')
.action(lazyAction(() => import('./commands/testCommand'), 'default'));
+ program
+ .command('config:print')
+ .option('--with-secrets', 'Include secrets in the printed configuration')
+ .option(
+ '--env ',
+ 'The environment to print configuration for [NODE_ENV or development]',
+ )
+ .option(
+ '--format ',
+ 'Format to print the configuration in, either json or yaml [yaml]',
+ )
+ .description('Print the app configuration for the current package')
+ .action(lazyAction(() => import('./commands/config/print'), 'default'));
+
program
.command('prepack')
.description('Prepares a package for packaging before publishing')
diff --git a/packages/cli/src/lib/bundler/config.ts b/packages/cli/src/lib/bundler/config.ts
index 56150ad968..8049ce436d 100644
--- a/packages/cli/src/lib/bundler/config.ts
+++ b/packages/cli/src/lib/bundler/config.ts
@@ -152,11 +152,11 @@ export function createBackendConfig(
externals: [
nodeExternals({
modulesDir: paths.rootNodeModules,
- whitelist: ['webpack/hot/poll?100', /\@backstage\/.*/],
+ allowlist: ['webpack/hot/poll?100', /\@backstage\/.*/],
}),
nodeExternals({
modulesDir: paths.targetNodeModules,
- whitelist: ['webpack/hot/poll?100', /\@backstage\/.*/],
+ allowlist: ['webpack/hot/poll?100', /\@backstage\/.*/],
}),
],
target: 'node' as const,
diff --git a/packages/cli/templates/default-plugin/dev/index.tsx b/packages/cli/templates/default-plugin/dev/index.tsx
index 812a5585d4..6fce113093 100644
--- a/packages/cli/templates/default-plugin/dev/index.tsx
+++ b/packages/cli/templates/default-plugin/dev/index.tsx
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import { createDevApp } from '@backstage/dev-utils';
import { plugin } from '../src/plugin';
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.test.tsx.hbs b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.test.tsx.hbs
index dff57e66a4..37759313ee 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.test.tsx.hbs
+++ b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.test.tsx.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import React from 'react';
import { render } from '@testing-library/react';
import mockFetch from 'jest-fetch-mock';
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs
index 34e37f3e7b..79adaefaa8 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs
+++ b/packages/cli/templates/default-plugin/src/components/ExampleComponent/ExampleComponent.tsx.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import React, { FC } from 'react';
import { Typography, Grid } from '@material-ui/core';
import {
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleComponent/index.ts b/packages/cli/templates/default-plugin/src/components/ExampleComponent/index.ts
index e785d45082..520a3bf553 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleComponent/index.ts
+++ b/packages/cli/templates/default-plugin/src/components/ExampleComponent/index.ts
@@ -1,17 +1 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
export { default } from './ExampleComponent';
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.test.tsx.hbs b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.test.tsx.hbs
index 7fecdc6f11..cc61c215cd 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.test.tsx.hbs
+++ b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.test.tsx.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import React from 'react';
import { render } from '@testing-library/react';
import mockFetch from 'jest-fetch-mock';
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.tsx.hbs b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.tsx.hbs
index 2dd54f726e..0af27a5935 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.tsx.hbs
+++ b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/ExampleFetchComponent.tsx.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import React, { FC } from 'react';
import { makeStyles } from '@material-ui/core/styles';
import { Table, TableColumn, Progress } from '@backstage/core';
diff --git a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/index.ts b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/index.ts
index 28482f9fe1..3e53453948 100644
--- a/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/index.ts
+++ b/packages/cli/templates/default-plugin/src/components/ExampleFetchComponent/index.ts
@@ -1,17 +1 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
export { default } from './ExampleFetchComponent';
diff --git a/packages/cli/templates/default-plugin/src/index.ts b/packages/cli/templates/default-plugin/src/index.ts
index 3a0a0fe2d3..99edba26c3 100644
--- a/packages/cli/templates/default-plugin/src/index.ts
+++ b/packages/cli/templates/default-plugin/src/index.ts
@@ -1,17 +1 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
export { plugin } from './plugin';
diff --git a/packages/cli/templates/default-plugin/src/plugin.test.ts.hbs b/packages/cli/templates/default-plugin/src/plugin.test.ts.hbs
index e34204c9ae..c2be0a5301 100644
--- a/packages/cli/templates/default-plugin/src/plugin.test.ts.hbs
+++ b/packages/cli/templates/default-plugin/src/plugin.test.ts.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import { plugin } from './plugin';
describe('{{ id }}', () => {
diff --git a/packages/cli/templates/default-plugin/src/plugin.ts.hbs b/packages/cli/templates/default-plugin/src/plugin.ts.hbs
index ad5db2e711..6a410a6a28 100644
--- a/packages/cli/templates/default-plugin/src/plugin.ts.hbs
+++ b/packages/cli/templates/default-plugin/src/plugin.ts.hbs
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import { createPlugin, createRouteRef } from '@backstage/core';
import ExampleComponent from './components/ExampleComponent';
diff --git a/packages/cli/templates/default-plugin/src/setupTests.ts b/packages/cli/templates/default-plugin/src/setupTests.ts
index 8553642152..3fa8703ac4 100644
--- a/packages/cli/templates/default-plugin/src/setupTests.ts
+++ b/packages/cli/templates/default-plugin/src/setupTests.ts
@@ -1,19 +1,3 @@
-/*
- * Copyright 2020 Spotify AB
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
import '@testing-library/jest-dom';
require('jest-fetch-mock').enableMocks();
diff --git a/packages/core/package.json b/packages/core/package.json
index f75df3f564..7333e0ce2a 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -40,7 +40,7 @@
"classnames": "^2.2.6",
"clsx": "^1.1.0",
"lodash": "^4.17.15",
- "material-table": "1.68.x",
+ "material-table": "1.68.0",
"prop-types": "^15.7.2",
"rc-progress": "^3.0.0",
"react": "^16.12.0",
@@ -63,7 +63,7 @@
"@types/google-protobuf": "^3.7.2",
"@types/jest": "^26.0.7",
"@types/node": "^12.0.0",
- "@types/react-helmet": "^5.0.15",
+ "@types/react-helmet": "^6.1.0",
"@types/zen-observable": "^0.8.0",
"jest-fetch-mock": "^3.0.3"
},
diff --git a/packages/create-app/bin/backstage-create-app b/packages/create-app/bin/backstage-create-app
index 2b445ca9af..a065b8ac5a 100755
--- a/packages/create-app/bin/backstage-create-app
+++ b/packages/create-app/bin/backstage-create-app
@@ -25,6 +25,7 @@ if (!isLocal || process.env.BACKSTAGE_E2E_CLI_TEST) {
} else {
require('ts-node').register({
transpileOnly: true,
+ project: path.resolve(__dirname, '../../../tsconfig.json'),
compilerOptions: {
module: 'CommonJS',
},
diff --git a/packages/create-app/package.json b/packages/create-app/package.json
index 56bcfc488a..6a1a3b60b5 100644
--- a/packages/create-app/package.json
+++ b/packages/create-app/package.json
@@ -22,7 +22,9 @@
},
"scripts": {
"build": "backstage-cli build --outputs cjs",
- "lint": "backstage-cli lint"
+ "lint": "backstage-cli lint",
+ "clean": "backstage-cli clean",
+ "start": "nodemon --"
},
"dependencies": {
"@backstage/cli-common": "^0.1.1-alpha.18",
diff --git a/packages/create-app/templates/default-app/app-config.yaml b/packages/create-app/templates/default-app/app-config.yaml
index 04a7913286..9fafbf4d76 100644
--- a/packages/create-app/templates/default-app/app-config.yaml
+++ b/packages/create-app/templates/default-app/app-config.yaml
@@ -7,7 +7,8 @@ organization:
backend:
baseUrl: http://localhost:7000
- listen: 0.0.0.0:7000
+ listen:
+ port: 7000
cors:
origin: http://localhost:3000
methods: [GET, POST, PUT, DELETE]
diff --git a/packages/create-app/templates/default-app/packages/backend/src/plugins/catalog.ts b/packages/create-app/templates/default-app/packages/backend/src/plugins/catalog.ts
index 9df4570963..aa0538a6d8 100644
--- a/packages/create-app/templates/default-app/packages/backend/src/plugins/catalog.ts
+++ b/packages/create-app/templates/default-app/packages/backend/src/plugins/catalog.ts
@@ -12,9 +12,10 @@ import { useHotCleanup } from '@backstage/backend-common';
export default async function createPlugin({
logger,
+ config,
database,
}: PluginEnvironment) {
- const locationReader = new LocationReaders(logger);
+ const locationReader = new LocationReaders({ logger, config });
const db = await DatabaseManager.createDatabase(database, { logger });
const entitiesCatalog = new DatabaseEntitiesCatalog(db);
diff --git a/packages/docgen/bin/backstage-docgen b/packages/docgen/bin/backstage-docgen
index 2b445ca9af..a065b8ac5a 100755
--- a/packages/docgen/bin/backstage-docgen
+++ b/packages/docgen/bin/backstage-docgen
@@ -25,6 +25,7 @@ if (!isLocal || process.env.BACKSTAGE_E2E_CLI_TEST) {
} else {
require('ts-node').register({
transpileOnly: true,
+ project: path.resolve(__dirname, '../../../tsconfig.json'),
compilerOptions: {
module: 'CommonJS',
},
diff --git a/packages/storybook/.storybook/webpack-plugin-fail-build-on-warning.js b/packages/storybook/.storybook/webpack-plugin-fail-build-on-warning.js
index 1ccf825839..b812b6bac9 100644
--- a/packages/storybook/.storybook/webpack-plugin-fail-build-on-warning.js
+++ b/packages/storybook/.storybook/webpack-plugin-fail-build-on-warning.js
@@ -19,7 +19,7 @@
* https://github.com/spotify/backstage/issues/718. To make sure new warnings are not introduced with new PRs, we
* want to fail CI builds if there are warnings when building storybook.
*
- * This webpack plugin makes sure the CI builds fail on Webpack warnings. We also have a whitelist of warnings here
+ * This webpack plugin makes sure the CI builds fail on Webpack warnings. We also have an allowlist of warnings here
* which we think are non-critical.
*
* Note that this implementation will not detect other warnings emitted by storybook build that are separate from
@@ -32,7 +32,7 @@
*/
class WebpackPluginFailBuildOnWarning {
// Ignore the following warnings in the Webpack build.
- warningsWhitelist = new Set([
+ warningsAllowlist = new Set([
'AssetsOverSizeLimitWarning',
'EntrypointsOverSizeLimitWarning',
'NoAsyncChunksWarning',
@@ -50,7 +50,7 @@ class WebpackPluginFailBuildOnWarning {
if (warnings.length > 0) {
// Throw error if there are unexpected warnings.
for (let warning of warnings) {
- if (!this.warningsWhitelist.has(warning.name)) {
+ if (!this.warningsAllowlist.has(warning.name)) {
process.on('beforeExit', () => {
console.log(
`You have some unexpected warning(s) in your webpack build. Exiting process as error.`,
diff --git a/packages/storybook/README.md b/packages/storybook/README.md
index 66768c0fe5..38708afe4b 100644
--- a/packages/storybook/README.md
+++ b/packages/storybook/README.md
@@ -1,6 +1,6 @@
# storybook
-This package provides a storybook build for Backstage. See [storybook.backstage.io](http://storybook.backstage.io)
+This package provides a storybook build for Backstage. See [http://backstage.io/storybook](http://http://backstage.io/storybook)
## Why is this not part of `@backstage/core`?
diff --git a/packages/techdocs-cli/bin/techdocs-cli b/packages/techdocs-cli/bin/techdocs-cli
index 9d77a767ca..ccc9c23beb 100755
--- a/packages/techdocs-cli/bin/techdocs-cli
+++ b/packages/techdocs-cli/bin/techdocs-cli
@@ -21,10 +21,11 @@ const path = require('path');
const isLocal = require('fs').existsSync(path.resolve(__dirname, '../src'));
if (!isLocal) {
- require('../dist');
+ require('..');
} else {
require('ts-node').register({
transpileOnly: true,
+ project: path.resolve(__dirname, '../../../tsconfig.json'),
compilerOptions: {
module: 'CommonJS',
},
diff --git a/plugins/README.md b/plugins/README.md
index a7fe648bf7..91ad94b883 100644
--- a/plugins/README.md
+++ b/plugins/README.md
@@ -4,7 +4,7 @@ Backstage is a single-page application composed of a set of plugins.
Our goal for the plugin ecosystem is that the definition of a plugin is flexible enough to allow you to expose pretty much any kind of infrastructure or software development tool as a plugin in Backstage. By following strong [design guidelines](https://github.com/spotify/backstage/blob/master/docs/dls/design.md) we ensure the the overall user experience stays consistent between plugins.
-
+
## Creating a plugin
diff --git a/plugins/api-docs/.eslintrc.js b/plugins/api-docs/.eslintrc.js
new file mode 100644
index 0000000000..13573efa9c
--- /dev/null
+++ b/plugins/api-docs/.eslintrc.js
@@ -0,0 +1,3 @@
+module.exports = {
+ extends: [require.resolve('@backstage/cli/config/eslint')],
+};
diff --git a/plugins/api-docs/README.md b/plugins/api-docs/README.md
new file mode 100644
index 0000000000..7ea87004c3
--- /dev/null
+++ b/plugins/api-docs/README.md
@@ -0,0 +1,9 @@
+# API Documentation
+
+WORK IN PROGRESS
+
+This is an extension for the catalog plugin that provides components to discover and display API entities.
+
+## Links
+
+- (The Backstage homepage)[https://backstage.io]
diff --git a/plugins/api-docs/dev/index.tsx b/plugins/api-docs/dev/index.tsx
new file mode 100644
index 0000000000..812a5585d4
--- /dev/null
+++ b/plugins/api-docs/dev/index.tsx
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { createDevApp } from '@backstage/dev-utils';
+import { plugin } from '../src/plugin';
+
+createDevApp().registerPlugin(plugin).render();
diff --git a/plugins/api-docs/package.json b/plugins/api-docs/package.json
new file mode 100644
index 0000000000..65f83a936d
--- /dev/null
+++ b/plugins/api-docs/package.json
@@ -0,0 +1,54 @@
+{
+ "name": "@backstage/plugin-api-docs",
+ "version": "0.1.1-alpha.18",
+ "main": "src/index.ts",
+ "types": "src/index.ts",
+ "license": "Apache-2.0",
+ "private": true,
+ "publishConfig": {
+ "access": "public",
+ "main": "dist/index.esm.js",
+ "types": "dist/index.d.ts"
+ },
+ "scripts": {
+ "build": "backstage-cli plugin:build",
+ "start": "backstage-cli plugin:serve",
+ "lint": "backstage-cli lint",
+ "test": "backstage-cli test",
+ "diff": "backstage-cli plugin:diff",
+ "prepack": "backstage-cli prepack",
+ "postpack": "backstage-cli postpack",
+ "clean": "backstage-cli clean"
+ },
+ "dependencies": {
+ "@backstage/catalog-model": "^0.1.1-alpha.18",
+ "@backstage/core": "^0.1.1-alpha.18",
+ "@backstage/plugin-catalog": "^0.1.1-alpha.18",
+ "@backstage/theme": "^0.1.1-alpha.18",
+ "@kyma-project/asyncapi-react": "^0.11.0",
+ "@material-icons/font": "^1.0.2",
+ "@material-ui/core": "^4.9.1",
+ "@material-ui/icons": "^4.9.1",
+ "@material-ui/lab": "4.0.0-alpha.45",
+ "react": "^16.13.1",
+ "react-dom": "^16.13.1",
+ "react-router-dom": "6.0.0-beta.0",
+ "react-use": "^15.3.3",
+ "swagger-ui-react": "^3.31.1"
+ },
+ "devDependencies": {
+ "@backstage/cli": "^0.1.1-alpha.18",
+ "@backstage/dev-utils": "^0.1.1-alpha.18",
+ "@backstage/test-utils": "^0.1.1-alpha.18",
+ "@testing-library/jest-dom": "^5.10.1",
+ "@testing-library/react": "^10.4.1",
+ "@testing-library/user-event": "^12.0.7",
+ "@types/jest": "^26.0.7",
+ "@types/node": "^12.0.0",
+ "@types/swagger-ui-react": "^3.23.3",
+ "jest-fetch-mock": "^3.0.3"
+ },
+ "files": [
+ "dist"
+ ]
+}
diff --git a/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogLayout.tsx b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogLayout.tsx
new file mode 100644
index 0000000000..d846e2b0e2
--- /dev/null
+++ b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogLayout.tsx
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Header, Page, pageTheme } from '@backstage/core';
+import React from 'react';
+
+type Props = {
+ children?: React.ReactNode;
+};
+
+const ApiCatalogLayout = ({ children }: Props) => {
+ return (
+
+
+ {children}
+
+ );
+};
+
+export default ApiCatalogLayout;
diff --git a/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.test.tsx b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.test.tsx
new file mode 100644
index 0000000000..19cbaf6038
--- /dev/null
+++ b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.test.tsx
@@ -0,0 +1,70 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Entity } from '@backstage/catalog-model';
+import { ApiProvider, ApiRegistry, storageApiRef } from '@backstage/core';
+// TODO: Circular ref!
+import { CatalogApi, catalogApiRef } from '@backstage/plugin-catalog';
+import { MockStorageApi, wrapInTestApp } from '@backstage/test-utils';
+import { render } from '@testing-library/react';
+import React from 'react';
+import { ApiCatalogPage } from './ApiCatalogPage';
+
+describe('ApiCatalogPage', () => {
+ const catalogApi: Partial = {
+ getEntities: () =>
+ Promise.resolve([
+ {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: {
+ name: 'Entity1',
+ },
+ },
+ {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: {
+ name: 'Entity2',
+ },
+ },
+ ] as Entity[]),
+ getLocationByEntity: () =>
+ Promise.resolve({ id: 'id', type: 'github', target: 'url' }),
+ };
+
+ const renderWrapped = (children: React.ReactNode) =>
+ render(
+ wrapInTestApp(
+
+ {children}
+ ,
+ ),
+ );
+
+ // this test right now causes some red lines in the log output when running tests
+ // related to some theme issues in mui-table
+ // https://github.com/mbrn/material-table/issues/1293
+ it('should render', async () => {
+ const { findByText } = renderWrapped();
+ expect(await findByText(/APIs \(2\)/)).toBeInTheDocument();
+ });
+});
diff --git a/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.tsx b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.tsx
new file mode 100644
index 0000000000..f624ec9f92
--- /dev/null
+++ b/plugins/api-docs/src/components/ApiCatalogPage/ApiCatalogPage.tsx
@@ -0,0 +1,45 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Content, useApi } from '@backstage/core';
+// TODO: Circular ref
+import { catalogApiRef } from '@backstage/plugin-catalog';
+import React from 'react';
+import { useAsync } from 'react-use';
+import { ApiCatalogTable } from '../ApiCatalogTable/ApiCatalogTable';
+import ApiCatalogLayout from './ApiCatalogLayout';
+
+const CatalogPageContents = () => {
+ const catalogApi = useApi(catalogApiRef);
+ const { loading, error, value: matchingEntities } = useAsync(() => {
+ return catalogApi.getEntities({ kind: 'API' });
+ }, [catalogApi]);
+
+ return (
+
+
+
+
+
+ );
+};
+
+export const ApiCatalogPage = () => ;
diff --git a/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.test.tsx b/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.test.tsx
new file mode 100644
index 0000000000..67f6562a56
--- /dev/null
+++ b/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.test.tsx
@@ -0,0 +1,74 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { Entity } from '@backstage/catalog-model';
+import { wrapInTestApp } from '@backstage/test-utils';
+import { render } from '@testing-library/react';
+import * as React from 'react';
+import { ApiCatalogTable } from './ApiCatalogTable';
+
+const entites: Entity[] = [
+ {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: { name: 'api1' },
+ },
+ {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: { name: 'api2' },
+ },
+ {
+ apiVersion: 'backstage.io/v1alpha1',
+ kind: 'API',
+ metadata: { name: 'api3' },
+ },
+];
+
+describe('ApiCatalogTable component', () => {
+ it('should render error message when error is passed in props', async () => {
+ const rendered = render(
+ wrapInTestApp(
+ ,
+ ),
+ );
+ const errorMessage = await rendered.findByText(
+ /Error encountered while fetching catalog entities./,
+ );
+ expect(errorMessage).toBeInTheDocument();
+ });
+
+ it('should display entity names when loading has finished and no error occurred', async () => {
+ const rendered = render(
+ wrapInTestApp(
+ ,
+ ),
+ );
+ expect(rendered.getByText(/APIs \(3\)/)).toBeInTheDocument();
+ expect(rendered.getByText(/api1/)).toBeInTheDocument();
+ expect(rendered.getByText(/api2/)).toBeInTheDocument();
+ expect(rendered.getByText(/api3/)).toBeInTheDocument();
+ });
+});
diff --git a/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.tsx b/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.tsx
new file mode 100644
index 0000000000..e30583caed
--- /dev/null
+++ b/plugins/api-docs/src/components/ApiCatalogTable/ApiCatalogTable.tsx
@@ -0,0 +1,89 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { Entity } from '@backstage/catalog-model';
+import { Table, TableColumn } from '@backstage/core';
+import { Link } from '@material-ui/core';
+import { Alert } from '@material-ui/lab';
+import React from 'react';
+import { generatePath, Link as RouterLink } from 'react-router-dom';
+import { entityRoute } from '../../routes';
+
+const columns: TableColumn[] = [
+ {
+ title: 'Name',
+ field: 'metadata.name',
+ highlight: true,
+ render: (entity: any) => (
+
+ {entity.metadata.name}
+
+ ),
+ },
+ {
+ title: 'Description',
+ field: 'metadata.description',
+ },
+];
+
+type CatalogTableProps = {
+ entities: Entity[];
+ titlePreamble: string;
+ loading: boolean;
+ error?: any;
+};
+
+export const ApiCatalogTable = ({
+ entities,
+ loading,
+ error,
+ titlePreamble,
+}: CatalogTableProps) => {
+ if (error) {
+ return (
+
,
+ tooltip: 'Refresh Data',
+ isFreeAction: true,
+ onClick: () => retry(),
+ },
+ ]}
+ data={builds}
+ onChangePage={onChangePage}
+ onChangeRowsPerPage={onChangePageSize}
+ title={
+
+
+
+ {projectName}
+
+ }
+ columns={generatedColumns}
+ />
+ );
+};
diff --git a/plugins/jenkins/src/pages/BuildsPage/lib/CITable/index.ts b/plugins/jenkins/src/pages/BuildsPage/lib/CITable/index.ts
new file mode 100644
index 0000000000..358939e69f
--- /dev/null
+++ b/plugins/jenkins/src/pages/BuildsPage/lib/CITable/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+export { CITable } from './CITable';
+export type { CITableBuildInfo } from './CITable';
diff --git a/plugins/jenkins/src/pages/BuildsPage/lib/Status/JenkinsRunStatus.tsx b/plugins/jenkins/src/pages/BuildsPage/lib/Status/JenkinsRunStatus.tsx
new file mode 100644
index 0000000000..66a58abe76
--- /dev/null
+++ b/plugins/jenkins/src/pages/BuildsPage/lib/Status/JenkinsRunStatus.tsx
@@ -0,0 +1,78 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import {
+ StatusPending,
+ StatusRunning,
+ StatusOK,
+ StatusWarning,
+ StatusAborted,
+ StatusError,
+} from '@backstage/core';
+import React from 'react';
+
+export const JenkinsRunStatus = ({
+ status,
+}: {
+ status: string | undefined;
+}) => {
+ if (status === undefined) return null;
+ switch (status.toLowerCase()) {
+ case 'queued':
+ case 'scheduled':
+ return (
+ <>
+ Queued
+ >
+ );
+ case 'running':
+ return (
+ <>
+ In progress
+ >
+ );
+ case 'unstable':
+ return (
+ <>
+ Unstable
+ >
+ );
+ case 'failure':
+ return (
+ <>
+ Failed
+ >
+ );
+ case 'success':
+ return (
+ <>
+ Completed
+ >
+ );
+ case 'aborted':
+ return (
+ <>
+ Aborted
+ >
+ );
+ default:
+ return (
+ <>
+ {status}
+ >
+ );
+ }
+};
diff --git a/plugins/jenkins/src/pages/BuildsPage/lib/Status/index.ts b/plugins/jenkins/src/pages/BuildsPage/lib/Status/index.ts
new file mode 100644
index 0000000000..f5dd4a55e5
--- /dev/null
+++ b/plugins/jenkins/src/pages/BuildsPage/lib/Status/index.ts
@@ -0,0 +1,16 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+export { JenkinsRunStatus } from './JenkinsRunStatus';
diff --git a/plugins/jenkins/src/plugin.test.ts b/plugins/jenkins/src/plugin.test.ts
new file mode 100644
index 0000000000..8c3f057ecb
--- /dev/null
+++ b/plugins/jenkins/src/plugin.test.ts
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { plugin } from './plugin';
+
+describe('jenkins', () => {
+ it('should export plugin', () => {
+ expect(plugin).toBeDefined();
+ });
+});
diff --git a/plugins/jenkins/src/plugin.ts b/plugins/jenkins/src/plugin.ts
new file mode 100644
index 0000000000..979b0a31cf
--- /dev/null
+++ b/plugins/jenkins/src/plugin.ts
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { createPlugin, createRouteRef } from '@backstage/core';
+import { DetailedViewPage } from './pages/BuildWithStepsPage';
+
+export const buildRouteRef = createRouteRef({
+ path: '/jenkins/job',
+ title: 'Jenkins run',
+});
+
+export const plugin = createPlugin({
+ id: 'jenkins',
+ register({ router }) {
+ router.addRoute(buildRouteRef, DetailedViewPage);
+ },
+});
+
+export { JenkinsBuildsWidget } from './components/JenkinsPluginWidget/JenkinsBuildsWidget';
+export { JenkinsLastBuildWidget } from './components/JenkinsPluginWidget/JenkinsLastBuildWidget';
diff --git a/plugins/jenkins/src/setupTests.ts b/plugins/jenkins/src/setupTests.ts
new file mode 100644
index 0000000000..8553642152
--- /dev/null
+++ b/plugins/jenkins/src/setupTests.ts
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import '@testing-library/jest-dom';
+
+require('jest-fetch-mock').enableMocks();
diff --git a/plugins/jenkins/src/state/index.ts b/plugins/jenkins/src/state/index.ts
new file mode 100644
index 0000000000..d21a380c2a
--- /dev/null
+++ b/plugins/jenkins/src/state/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+export * from './useBuilds';
+export * from './useBuildWithSteps';
diff --git a/plugins/jenkins/src/state/useAsyncPolling.ts b/plugins/jenkins/src/state/useAsyncPolling.ts
new file mode 100644
index 0000000000..7ea0755368
--- /dev/null
+++ b/plugins/jenkins/src/state/useAsyncPolling.ts
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { useRef } from 'react';
+
+export const useAsyncPolling = (
+ pollingFn: () => Promise,
+ interval: number,
+) => {
+ const isPolling = useRef(false);
+ const startPolling = async () => {
+ if (isPolling.current === true) return;
+ isPolling.current = true;
+
+ while (isPolling.current === true) {
+ await pollingFn();
+ await new Promise(resolve => setTimeout(resolve, interval));
+ }
+ };
+
+ const stopPolling = () => {
+ isPolling.current = false;
+ };
+ return { startPolling, stopPolling };
+};
diff --git a/plugins/jenkins/src/state/useBuildWithSteps.ts b/plugins/jenkins/src/state/useBuildWithSteps.ts
new file mode 100644
index 0000000000..617b2b1f4f
--- /dev/null
+++ b/plugins/jenkins/src/state/useBuildWithSteps.ts
@@ -0,0 +1,68 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { errorApiRef, useApi } from '@backstage/core';
+import { useCallback } from 'react';
+import { useAsyncRetry } from 'react-use';
+import { jenkinsApiRef } from '../api/index';
+import { useAsyncPolling } from './useAsyncPolling';
+
+const INTERVAL_AMOUNT = 1500;
+export function useBuildWithSteps(buildName: string) {
+ const api = useApi(jenkinsApiRef);
+ const errorApi = useApi(errorApiRef);
+
+ const getBuildWithSteps = useCallback(async () => {
+ try {
+ const build = await api.getBuild(buildName);
+
+ const { jobName } = api.extractJobDetailsFromBuildName(buildName);
+ const job = await api.getJob(jobName);
+ const jobInfo = api.extractScmDetailsFromJob(job);
+
+ return Promise.resolve(api.mapJenkinsBuildToCITable(build, jobInfo));
+ } catch (e) {
+ errorApi.post(e);
+ return Promise.reject(e);
+ }
+ }, [buildName, api, errorApi]);
+
+ const restartBuild = async () => {
+ try {
+ await api.retry(buildName);
+ } catch (e) {
+ errorApi.post(e);
+ }
+ };
+
+ const { loading, value, retry } = useAsyncRetry(() => getBuildWithSteps(), [
+ getBuildWithSteps,
+ ]);
+
+ const { startPolling, stopPolling } = useAsyncPolling(
+ getBuildWithSteps,
+ INTERVAL_AMOUNT,
+ );
+
+ return [
+ { loading, value, retry },
+ {
+ restartBuild,
+ getBuildWithSteps,
+ startPolling,
+ stopPolling,
+ },
+ ] as const;
+}
diff --git a/plugins/jenkins/src/state/useBuilds.ts b/plugins/jenkins/src/state/useBuilds.ts
new file mode 100644
index 0000000000..deb3125637
--- /dev/null
+++ b/plugins/jenkins/src/state/useBuilds.ts
@@ -0,0 +1,82 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+import { errorApiRef, useApi } from '@backstage/core';
+import { useCallback, useEffect, useState } from 'react';
+import { useAsyncRetry } from 'react-use';
+import { jenkinsApiRef } from '../api';
+
+export function useBuilds(owner: string, repo: string, branch?: string) {
+ const api = useApi(jenkinsApiRef);
+ const errorApi = useApi(errorApiRef);
+
+ const [total, setTotal] = useState(0);
+ const [page, setPage] = useState(0);
+ const [pageSize, setPageSize] = useState(5);
+
+ const getBuilds = useCallback(async () => {
+ try {
+ let build;
+ if (branch) {
+ build = await api.getLastBuild(`${owner}/${repo}/${branch}`);
+ } else {
+ build = await api.getFolder(`${owner}/${repo}`);
+ }
+ return build;
+ } catch (e) {
+ errorApi.post(e);
+ return Promise.reject(e);
+ }
+ }, [api, branch, errorApi, owner, repo]);
+
+ const restartBuild = async (buildName: string) => {
+ try {
+ await api.retry(buildName);
+ } catch (e) {
+ errorApi.post(e);
+ }
+ };
+
+ useEffect(() => {
+ getBuilds().then(b => {
+ const size = Array.isArray(b) ? b?.[0].build_num! : 1;
+ setTotal(size);
+ });
+ }, [repo, getBuilds]);
+
+ const { loading, value, retry } = useAsyncRetry(
+ () => getBuilds().then(builds => builds ?? [], restartBuild),
+ [page, pageSize, getBuilds],
+ );
+
+ const projectName = `${owner}/${repo}`;
+ return [
+ {
+ page,
+ pageSize,
+ loading,
+ value,
+ projectName,
+ total,
+ },
+ {
+ getBuilds,
+ setPage,
+ setPageSize,
+ restartBuild,
+ retry,
+ },
+ ] as const;
+}
diff --git a/plugins/newrelic/.eslintrc.js b/plugins/newrelic/.eslintrc.js
new file mode 100644
index 0000000000..13573efa9c
--- /dev/null
+++ b/plugins/newrelic/.eslintrc.js
@@ -0,0 +1,3 @@
+module.exports = {
+ extends: [require.resolve('@backstage/cli/config/eslint')],
+};
diff --git a/plugins/newrelic/README.md b/plugins/newrelic/README.md
new file mode 100644
index 0000000000..19bd24950c
--- /dev/null
+++ b/plugins/newrelic/README.md
@@ -0,0 +1,39 @@
+# New Relic Plugin (Alpha)
+
+Website: [https://newrelic.com](https://newrelic.com)
+
+
+
+
+## Getting Started
+
+Add New Relic REST API Key to `app-config.yaml`
+
+```yaml
+newrelic:
+ api:
+ baseUrl: 'https://api.newrelic.com/v2'
+ key:
+```
+
+New Relic Plugin Path: [/newrelic](http://localhost:3000/newrelic)
+
+## Features
+
+- View New Relic Application Performance Monitoring (APM) data such as:
+ - Application Name
+ - Response Time (ms)
+ - Throughput (rpm)
+ - Error Rate
+ - Instance Count
+ - Apdex Score
+
+## Limitations
+
+- Currently only supports New Relic APM data
+
+---
+
+You can also serve the plugin in isolation by running `yarn start` in the plugin directory.
+This method of serving the plugin provides quicker iteration speed and a faster startup and hot reloads.
+It is only meant for local development, and the setup for it can be found inside the [/dev](./dev) directory.
diff --git a/plugins/newrelic/dev/index.tsx b/plugins/newrelic/dev/index.tsx
new file mode 100644
index 0000000000..812a5585d4
--- /dev/null
+++ b/plugins/newrelic/dev/index.tsx
@@ -0,0 +1,20 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { createDevApp } from '@backstage/dev-utils';
+import { plugin } from '../src/plugin';
+
+createDevApp().registerPlugin(plugin).render();
diff --git a/plugins/newrelic/package.json b/plugins/newrelic/package.json
new file mode 100644
index 0000000000..5b1b5d54ce
--- /dev/null
+++ b/plugins/newrelic/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "@backstage/plugin-newrelic",
+ "version": "0.1.1-alpha.18",
+ "main": "src/index.ts",
+ "types": "src/index.ts",
+ "license": "Apache-2.0",
+ "private": true,
+ "publishConfig": {
+ "access": "public",
+ "main": "dist/index.esm.js",
+ "types": "dist/index.d.ts"
+ },
+ "scripts": {
+ "build": "backstage-cli plugin:build",
+ "start": "backstage-cli plugin:serve",
+ "lint": "backstage-cli lint",
+ "test": "backstage-cli test",
+ "diff": "backstage-cli plugin:diff",
+ "prepack": "backstage-cli prepack",
+ "postpack": "backstage-cli postpack",
+ "clean": "backstage-cli clean"
+ },
+ "dependencies": {
+ "@backstage/core": "^0.1.1-alpha.18",
+ "@backstage/theme": "^0.1.1-alpha.18",
+ "@material-ui/core": "^4.9.1",
+ "@material-ui/icons": "^4.9.1",
+ "@material-ui/lab": "4.0.0-alpha.45",
+ "react": "^16.13.1",
+ "react-dom": "^16.13.1",
+ "react-use": "^15.3.3"
+ },
+ "devDependencies": {
+ "@backstage/cli": "^0.1.1-alpha.18",
+ "@backstage/dev-utils": "^0.1.1-alpha.18",
+ "@testing-library/jest-dom": "^5.10.1",
+ "@testing-library/react": "^10.4.1",
+ "@testing-library/user-event": "^12.0.7",
+ "@types/jest": "^26.0.7",
+ "@types/node": "^12.0.0",
+ "jest-fetch-mock": "^3.0.3"
+ },
+ "files": [
+ "dist"
+ ]
+}
diff --git a/plugins/newrelic/src/assets/img/newrelic-plugin-apm.png b/plugins/newrelic/src/assets/img/newrelic-plugin-apm.png
new file mode 100644
index 0000000000..cc63306bba
Binary files /dev/null and b/plugins/newrelic/src/assets/img/newrelic-plugin-apm.png differ
diff --git a/plugins/newrelic/src/assets/img/newrelic-plugin-tools.png b/plugins/newrelic/src/assets/img/newrelic-plugin-tools.png
new file mode 100644
index 0000000000..e42013f14c
Binary files /dev/null and b/plugins/newrelic/src/assets/img/newrelic-plugin-tools.png differ
diff --git a/plugins/newrelic/src/assets/img/newrelic.jpg b/plugins/newrelic/src/assets/img/newrelic.jpg
new file mode 100644
index 0000000000..d4b3a0e196
Binary files /dev/null and b/plugins/newrelic/src/assets/img/newrelic.jpg differ
diff --git a/plugins/newrelic/src/components/NewRelicComponent/NewRelicComponent.tsx b/plugins/newrelic/src/components/NewRelicComponent/NewRelicComponent.tsx
new file mode 100644
index 0000000000..94d5c530a1
--- /dev/null
+++ b/plugins/newrelic/src/components/NewRelicComponent/NewRelicComponent.tsx
@@ -0,0 +1,50 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React, { FC } from 'react';
+import { Grid } from '@material-ui/core';
+import {
+ Header,
+ Page,
+ pageTheme,
+ Content,
+ ContentHeader,
+ HeaderLabel,
+ SupportButton,
+} from '@backstage/core';
+import NewRelicFetchComponent from '../NewRelicFetchComponent';
+
+const NewRelicComponent: FC<{}> = () => (
+
+
+
+
+
+
+
+ New Relic Application Performance Monitoring
+
+
+
+
+
+
+
+
+
+);
+
+export default NewRelicComponent;
diff --git a/plugins/newrelic/src/components/NewRelicComponent/index.ts b/plugins/newrelic/src/components/NewRelicComponent/index.ts
new file mode 100644
index 0000000000..de10a42770
--- /dev/null
+++ b/plugins/newrelic/src/components/NewRelicComponent/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+export { default } from './NewRelicComponent';
diff --git a/plugins/newrelic/src/components/NewRelicFetchComponent/NewRelicFetchComponent.tsx b/plugins/newrelic/src/components/NewRelicFetchComponent/NewRelicFetchComponent.tsx
new file mode 100644
index 0000000000..9b3791e062
--- /dev/null
+++ b/plugins/newrelic/src/components/NewRelicFetchComponent/NewRelicFetchComponent.tsx
@@ -0,0 +1,134 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import React, { FC } from 'react';
+import {
+ configApiRef,
+ Progress,
+ Table,
+ TableColumn,
+ useApi,
+} from '@backstage/core';
+import Alert from '@material-ui/lab/Alert';
+import { useAsync } from 'react-use';
+
+type NewRelicApplication = {
+ id: number;
+ application_summary: NewRelicApplicationSummary;
+ name: string;
+ language: string;
+ health_status: string;
+ reporting: boolean;
+ settings: NewRelicApplicationSettings;
+ links?: NewRelicApplicationLinks;
+};
+
+type NewRelicApplicationSummary = {
+ apdex_score: number;
+ error_rate: number;
+ host_count: number;
+ instance_count: number;
+ response_time: number;
+ throughput: number;
+};
+
+type NewRelicApplicationSettings = {
+ app_apdex_threshold: number;
+ end_user_apdex_threshold: number;
+ enable_real_user_monitoring: boolean;
+ use_server_side_config: boolean;
+};
+
+type NewRelicApplicationLinks = {
+ application_instances: Array;
+ servers: Array;
+ application_hosts: Array;
+};
+
+type NewRelicApplications = {
+ applications: NewRelicApplication[];
+};
+
+export const NewRelicAPMTable: FC = ({
+ applications,
+}) => {
+ const columns: TableColumn[] = [
+ { title: 'Application', field: 'name' },
+ { title: 'Response Time', field: 'responseTime' },
+ { title: 'Throughput', field: 'throughput' },
+ { title: 'Error Rate', field: 'errorRate' },
+ { title: 'Instance Count', field: 'instanceCount' },
+ { title: 'Apdex', field: 'apdexScore' },
+ ];
+ const data = applications.map((app: NewRelicApplication) => {
+ const { name, application_summary: applicationSummary } = app;
+ const {
+ response_time: responseTime,
+ throughput,
+ error_rate: errorRate,
+ instance_count: instanceCount,
+ apdex_score: apdexScore,
+ } = applicationSummary;
+
+ return {
+ name,
+ responseTime: `${responseTime} ms`,
+ throughput: `${throughput} rpm`,
+ errorRate: `${errorRate}%`,
+ instanceCount,
+ apdexScore,
+ };
+ });
+
+ return (
+
+ );
+};
+
+const NewRelicFetchComponent: FC<{}> = () => {
+ const configApi = useApi(configApiRef);
+ const apiBaseUrl = configApi.getString('newrelic.api.baseUrl');
+ const apiKey = configApi.getString('newrelic.api.key');
+
+ const { value, loading, error } = useAsync(async (): Promise<
+ NewRelicApplication[]
+ > => {
+ const response = await fetch(`${apiBaseUrl}/applications.json`, {
+ headers: {
+ 'X-Api-Key': apiKey,
+ },
+ });
+ const data: NewRelicApplications = await response.json();
+ return data.applications.filter((application: NewRelicApplication) => {
+ return application.hasOwnProperty('application_summary');
+ });
+ }, []);
+
+ if (loading) {
+ return ;
+ } else if (error) {
+ return {error.message};
+ }
+
+ return ;
+};
+
+export default NewRelicFetchComponent;
diff --git a/plugins/newrelic/src/components/NewRelicFetchComponent/index.ts b/plugins/newrelic/src/components/NewRelicFetchComponent/index.ts
new file mode 100644
index 0000000000..1907c0bf1d
--- /dev/null
+++ b/plugins/newrelic/src/components/NewRelicFetchComponent/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+export { default } from './NewRelicFetchComponent';
diff --git a/plugins/newrelic/src/index.ts b/plugins/newrelic/src/index.ts
new file mode 100644
index 0000000000..3a0a0fe2d3
--- /dev/null
+++ b/plugins/newrelic/src/index.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+export { plugin } from './plugin';
diff --git a/plugins/newrelic/src/plugin.test.ts b/plugins/newrelic/src/plugin.test.ts
new file mode 100644
index 0000000000..17429a95e0
--- /dev/null
+++ b/plugins/newrelic/src/plugin.test.ts
@@ -0,0 +1,23 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { plugin } from './plugin';
+
+describe('newrelic', () => {
+ it('should export plugin', () => {
+ expect(plugin).toBeDefined();
+ });
+});
diff --git a/plugins/newrelic/src/plugin.ts b/plugins/newrelic/src/plugin.ts
new file mode 100644
index 0000000000..21aac69e8f
--- /dev/null
+++ b/plugins/newrelic/src/plugin.ts
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import { createPlugin, createRouteRef } from '@backstage/core';
+import NewRelicComponent from './components/NewRelicComponent';
+
+export const rootRouteRef = createRouteRef({
+ path: '/newrelic',
+ title: 'newrelic',
+});
+
+export const plugin = createPlugin({
+ id: 'newrelic',
+ register({ router }) {
+ router.addRoute(rootRouteRef, NewRelicComponent);
+ },
+});
diff --git a/plugins/newrelic/src/setupTests.ts b/plugins/newrelic/src/setupTests.ts
new file mode 100644
index 0000000000..8553642152
--- /dev/null
+++ b/plugins/newrelic/src/setupTests.ts
@@ -0,0 +1,19 @@
+/*
+ * Copyright 2020 Spotify AB
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import '@testing-library/jest-dom';
+
+require('jest-fetch-mock').enableMocks();
diff --git a/plugins/register-component/README.md b/plugins/register-component/README.md
index 729a38955c..d324b3941f 100644
--- a/plugins/register-component/README.md
+++ b/plugins/register-component/README.md
@@ -1,5 +1,92 @@
-# [WIP] register-component
+# Register component plugin
Welcome to the register-component plugin!
This plugin allows you to submit your Backstage component using your software's YAML config.
+
+When installed it is accessible on [localhost:3000/register-component](localhost:3000/register-component).
+
+
+
+
+
+
+
+## Standalone setup
+
+0. Install plugin and its dependency `plugin-catalog`
+
+```bash
+yarn add @backstage/plugin-register-component -W
+yarn add @backstage/plugin-catalog -W
+```
+
+1. Add dependencies to the active plugins list
+
+```typescript
+// packages/app/src/plugins.ts
+export { plugin as RegisterComponent } from '@backstage/plugin-register-component';
+export { plugin as CatalogPlugin } from '@backstage/plugin-catalog';
+```
+
+2. Create `packages/app/src/apis.ts` and register all the needed plugins
+
+```typescript
+import {
+ alertApiRef,
+ AlertApiForwarder,
+ ApiRegistry,
+ ConfigApi,
+ errorApiRef,
+ ErrorApiForwarder,
+ ErrorAlerter,
+} from '@backstage/core';
+
+import { catalogApiRef, CatalogClient } from '@backstage/plugin-catalog';
+
+export const apis = (config: ConfigApi) => {
+ const backendUrl = config.getString('backend.baseUrl');
+
+ const builder = ApiRegistry.builder();
+
+ const alertApi = builder.add(alertApiRef, new AlertApiForwarder());
+ const errorApi = builder.add(
+ errorApiRef,
+ new ErrorAlerter(alertApi, new ErrorApiForwarder()),
+ );
+
+ builder.add(
+ catalogApiRef,
+ new CatalogClient({
+ apiOrigin: backendUrl,
+ basePath: '/catalog',
+ }),
+ );
+
+ return builder.build();
+};
+```
+
+3. Pass `apis` to createApp
+
+```typescript
+// packages/app/src/App.tsx
+import { apis } from './apis';
+
+const app = createApp({
+ apis,
+ plugins: Object.values(plugins),
+});
+```
+
+## Running
+
+Just run the backstage.
+
+```
+yarn start && yarn --cwd packages/backend start
+```
+
+## Usage
+
+Pretty straightforward, navigate to [localhost:3000/register-component](localhost:3000/register-component) and enter your component's YAML config URL.
diff --git a/plugins/register-component/src/assets/screenshot-1.png b/plugins/register-component/src/assets/screenshot-1.png
new file mode 100644
index 0000000000..ffaebbb2f5
Binary files /dev/null and b/plugins/register-component/src/assets/screenshot-1.png differ
diff --git a/plugins/register-component/src/assets/screenshot-2.png b/plugins/register-component/src/assets/screenshot-2.png
new file mode 100644
index 0000000000..e4e5dc579c
Binary files /dev/null and b/plugins/register-component/src/assets/screenshot-2.png differ
diff --git a/plugins/register-component/src/assets/screenshot-3.png b/plugins/register-component/src/assets/screenshot-3.png
new file mode 100644
index 0000000000..4bbac74d82
Binary files /dev/null and b/plugins/register-component/src/assets/screenshot-3.png differ
diff --git a/plugins/register-component/src/assets/screenshot-4.png b/plugins/register-component/src/assets/screenshot-4.png
new file mode 100644
index 0000000000..f45f333135
Binary files /dev/null and b/plugins/register-component/src/assets/screenshot-4.png differ
diff --git a/plugins/register-component/src/assets/screenshot-5.png b/plugins/register-component/src/assets/screenshot-5.png
new file mode 100644
index 0000000000..a50decd748
Binary files /dev/null and b/plugins/register-component/src/assets/screenshot-5.png differ
diff --git a/plugins/rollbar-backend/README.md b/plugins/rollbar-backend/README.md
index aacd0e9b6d..8cd08abed3 100644
--- a/plugins/rollbar-backend/README.md
+++ b/plugins/rollbar-backend/README.md
@@ -4,7 +4,18 @@ Simple plugin that proxies requests to the [Rollbar](https://rollbar.com) API.
## Setup
-A `ROLLBAR_ACCOUNT_TOKEN` environment variable must be set to a read access account token.
+The following values are read from the configuration file.
+
+```yaml
+rollbar:
+ organization: spotify
+ accountToken:
+ $secret:
+ env: ROLLBAR_ACCOUNT_TOKEN
+```
+
+_NOTE: The `ROLLBAR_ACCOUNT_TOKEN` environment variable must be set to a read
+access account token._
## Links
diff --git a/plugins/rollbar-backend/package.json b/plugins/rollbar-backend/package.json
index 102e233756..4b4a45b9dd 100644
--- a/plugins/rollbar-backend/package.json
+++ b/plugins/rollbar-backend/package.json
@@ -21,6 +21,7 @@
},
"dependencies": {
"@backstage/backend-common": "^0.1.1-alpha.18",
+ "@backstage/config": "^0.1.1-alpha.18",
"@types/express": "^4.17.6",
"axios": "^0.19.2",
"camelcase-keys": "^6.2.2",
diff --git a/plugins/rollbar-backend/src/service/router.test.ts b/plugins/rollbar-backend/src/service/router.test.ts
index 9ec0dbc7b5..f5dc2f1c3d 100644
--- a/plugins/rollbar-backend/src/service/router.test.ts
+++ b/plugins/rollbar-backend/src/service/router.test.ts
@@ -15,6 +15,7 @@
*/
import { getVoidLogger } from '@backstage/backend-common';
+import { ConfigReader } from '@backstage/config';
import express from 'express';
import request from 'supertest';
import { RollbarApi } from '../api';
@@ -37,6 +38,9 @@ describe('createRouter', () => {
const router = await createRouter({
rollbarApi,
logger: getVoidLogger(),
+ config: ConfigReader.fromConfigs([
+ { context: 'abc', data: { rollbar: { accountToken: 'foo' } } },
+ ]),
});
app = express().use(router);
});
diff --git a/plugins/rollbar-backend/src/service/router.ts b/plugins/rollbar-backend/src/service/router.ts
index 09491b0d00..0a8c58a9d7 100644
--- a/plugins/rollbar-backend/src/service/router.ts
+++ b/plugins/rollbar-backend/src/service/router.ts
@@ -14,15 +14,17 @@
* limitations under the License.
*/
-import { errorHandler } from '@backstage/backend-common';
-import { Logger } from 'winston';
-import Router from 'express-promise-router';
import express from 'express';
+import Router from 'express-promise-router';
+import { Logger } from 'winston';
+import { errorHandler } from '@backstage/backend-common';
+import { Config } from '@backstage/config';
import { RollbarApi } from '../api';
export interface RouterOptions {
rollbarApi?: RollbarApi;
logger: Logger;
+ config: Config;
}
export async function createRouter(
@@ -30,7 +32,10 @@ export async function createRouter(
): Promise {
const router = Router();
const logger = options.logger.child({ plugin: 'rollbar' });
- const accessToken = !options.rollbarApi ? getRollbarAccountToken(logger) : '';
+ const config = options.config.getConfig('rollbar');
+ const accessToken = !options.rollbarApi
+ ? getRollbarAccountToken(config, logger)
+ : '';
if (options.rollbarApi || accessToken) {
const rollbarApi =
@@ -82,17 +87,20 @@ export async function createRouter(
return router;
}
-function getRollbarAccountToken(logger: Logger) {
- const token = process.env.ROLLBAR_ACCOUNT_TOKEN || '';
+function getRollbarAccountToken(config: Config, logger: Logger) {
+ const token =
+ config.getOptionalString('accountToken') ||
+ process.env.ROLLBAR_ACCOUNT_TOKEN ||
+ '';
if (!token) {
if (process.env.NODE_ENV !== 'development') {
throw new Error(
- 'Rollbar token must be provided in ROLLBAR_ACCOUNT_TOKEN environment variable to start the API.',
+ 'The rollbar.accountToken must be provided in config to start the API.',
);
}
logger.warn(
- 'Failed to initialize rollbar backend, set ROLLBAR_ACCOUNT_TOKEN environment variable to start the API.',
+ 'Failed to initialize rollbar backend, set rollbar.accountToken in config to start the API.',
);
}
diff --git a/plugins/rollbar-backend/src/service/standaloneServer.ts b/plugins/rollbar-backend/src/service/standaloneServer.ts
index ecd5c072fb..a96d30d836 100644
--- a/plugins/rollbar-backend/src/service/standaloneServer.ts
+++ b/plugins/rollbar-backend/src/service/standaloneServer.ts
@@ -14,9 +14,13 @@
* limitations under the License.
*/
-import { createServiceBuilder } from '@backstage/backend-common';
import { Server } from 'http';
import { Logger } from 'winston';
+import {
+ createServiceBuilder,
+ loadBackendConfig,
+} from '@backstage/backend-common';
+import { ConfigReader } from '@backstage/config';
import { createRouter } from './router';
export interface ServerOptions {
@@ -24,14 +28,16 @@ export interface ServerOptions {
enableCors: boolean;
logger: Logger;
}
+
export async function startStandaloneServer(
options: ServerOptions,
): Promise {
const logger = options.logger.child({ service: 'rollbar-backend' });
+ const config = ConfigReader.fromConfigs(await loadBackendConfig());
logger.debug('Creating application...');
- const router = await createRouter({ logger });
+ const router = await createRouter({ logger, config });
const service = createServiceBuilder(module)
.enableCors({ origin: 'http://localhost:3000' })
diff --git a/plugins/rollbar/src/components/RollbarLayout/RollbarLayout.tsx b/plugins/rollbar/src/components/RollbarLayout/RollbarLayout.tsx
index 7bda63ea5f..c0524fabc5 100644
--- a/plugins/rollbar/src/components/RollbarLayout/RollbarLayout.tsx
+++ b/plugins/rollbar/src/components/RollbarLayout/RollbarLayout.tsx
@@ -17,6 +17,7 @@
import React, { ReactNode } from 'react';
import {
Header,
+ HeaderLabel,
Page,
pageTheme,
Content,
@@ -36,7 +37,10 @@ export const RollbarLayout = ({ title = 'Dashboard', children }: Props) => {
+ >
+
+
+
diff --git a/plugins/rollbar/src/components/RollbarPage/RollbarPage.test.tsx b/plugins/rollbar/src/components/RollbarPage/RollbarPage.test.tsx
index 2b0268500d..11263ed820 100644
--- a/plugins/rollbar/src/components/RollbarPage/RollbarPage.test.tsx
+++ b/plugins/rollbar/src/components/RollbarPage/RollbarPage.test.tsx
@@ -15,7 +15,12 @@
*/
import * as React from 'react';
-import { ApiProvider, ApiRegistry } from '@backstage/core';
+import {
+ ApiProvider,
+ ApiRegistry,
+ ConfigApi,
+ configApiRef,
+} from '@backstage/core';
import { wrapInTestApp } from '@backstage/test-utils';
import { render } from '@testing-library/react';
import { RollbarApi, rollbarApiRef } from '../../api/RollbarApi';
@@ -30,11 +35,20 @@ describe('RollbarPage component', () => {
const rollbarApi: Partial = {
getAllProjects: () => Promise.resolve(projects),
};
+ const config: Partial = {
+ getString: () => 'foo',
+ getOptionalString: () => 'foo',
+ };
const renderWrapped = (children: React.ReactNode) =>
render(
wrapInTestApp(
-
+
{children}
,
),
diff --git a/plugins/rollbar/src/components/RollbarPage/RollbarPage.tsx b/plugins/rollbar/src/components/RollbarPage/RollbarPage.tsx
index ec07c0fa48..0460b4a308 100644
--- a/plugins/rollbar/src/components/RollbarPage/RollbarPage.tsx
+++ b/plugins/rollbar/src/components/RollbarPage/RollbarPage.tsx
@@ -16,18 +16,27 @@
import React from 'react';
import { useAsync } from 'react-use';
-import { useApi } from '@backstage/core';
+import { configApiRef, useApi } from '@backstage/core';
import { rollbarApiRef } from '../../api/RollbarApi';
import { RollbarLayout } from '../RollbarLayout/RollbarLayout';
import { RollbarProjectTable } from './RollbarProjectTable';
export const RollbarPage = () => {
+ const configApi = useApi(configApiRef);
const rollbarApi = useApi(rollbarApiRef);
- const { value, loading } = useAsync(() => rollbarApi.getAllProjects());
+ const org =
+ configApi.getOptionalString('rollbar.organization') ??
+ configApi.getString('organization.name');
+ const { value, loading, error } = useAsync(() => rollbarApi.getAllProjects());
return (
-
+
);
};
diff --git a/plugins/rollbar/src/components/RollbarPage/RollbarProjectTable.tsx b/plugins/rollbar/src/components/RollbarPage/RollbarProjectTable.tsx
index bb8299b57e..fdf90c468e 100644
--- a/plugins/rollbar/src/components/RollbarPage/RollbarProjectTable.tsx
+++ b/plugins/rollbar/src/components/RollbarPage/RollbarProjectTable.tsx
@@ -17,9 +17,14 @@
import React from 'react';
import { Link as RouterLink } from 'react-router-dom';
import { Link } from '@material-ui/core';
+import { Alert } from '@material-ui/lab';
+import OpenInNewIcon from '@material-ui/icons/OpenInNew';
import { Table, TableColumn } from '@backstage/core';
import { RollbarProject } from '../../api/types';
+const projectUrl = (org: string, id: number) =>
+ `https://rollbar.com/${org}/all/items/?projects=${id}`;
+
const columns: TableColumn[] = [
{
title: 'ID',
@@ -32,7 +37,6 @@ const columns: TableColumn[] = [
title: 'Name',
field: 'name',
type: 'string',
- align: 'left',
highlight: true,
render: (row: Partial) => (
@@ -44,29 +48,58 @@ const columns: TableColumn[] = [
title: 'Status',
field: 'status',
type: 'string',
- align: 'left',
+ },
+ {
+ title: 'Open',
+ width: '10%',
+ render: (row: any) => (
+
+
+
+ ),
},
];
type Props = {
projects: RollbarProject[];
loading: boolean;
+ organization: string;
+ error?: any;
};
-export const RollbarProjectTable = ({ projects, loading }: Props) => {
+export const RollbarProjectTable = ({
+ projects,
+ organization,
+ loading,
+ error,
+}: Props) => {
+ if (error) {
+ return (
+