diff --git a/spacy/language.py b/spacy/language.py
index 17ca020ca..3b307e3f4 100644
--- a/spacy/language.py
+++ b/spacy/language.py
@@ -211,6 +211,7 @@ class Language:
# TODO: Adding this back to prevent breaking people's code etc., but
# we should consider removing it
self._meta["pipeline"] = list(self.pipe_names)
+ self._meta["components"] = list(self.component_names)
self._meta["disabled"] = list(self.disabled)
return self._meta
diff --git a/website/package-lock.json b/website/package-lock.json
index 9b449aca9..d995f910e 100644
--- a/website/package-lock.json
+++ b/website/package-lock.json
@@ -12818,14 +12818,6 @@
"escape-string-regexp": "^1.0.5"
}
},
- "gatsby-plugin-google-analytics": {
- "version": "2.0.14",
- "resolved": "https://registry.npmjs.org/gatsby-plugin-google-analytics/-/gatsby-plugin-google-analytics-2.0.14.tgz",
- "integrity": "sha512-sFD73d9isJQknnDAAkDidaybHJx6VIaLfy3nO3DwbFaitvZ08RimbynYOkcWAeA0zwwix2RgAvbq/9pAmtTb/A==",
- "requires": {
- "@babel/runtime": "^7.0.0"
- }
- },
"gatsby-plugin-manifest": {
"version": "2.0.17",
"resolved": "https://registry.npmjs.org/gatsby-plugin-manifest/-/gatsby-plugin-manifest-2.0.17.tgz",
diff --git a/website/src/templates/models.js b/website/src/templates/models.js
index 1bcdd4859..afeefde64 100644
--- a/website/src/templates/models.js
+++ b/website/src/templates/models.js
@@ -167,6 +167,8 @@ const Model = ({ name, langId, langName, baseUrl, repo, compatibility, hasExampl
const releaseUrl = `https://github.com/${repo}/releases/${releaseTag}`
const pipeline =
meta.pipeline && join(meta.pipeline.map(p => {p}))
+ const components =
+ meta.components && join(meta.components.map(p => {p}))
const sources = formatSources(meta.sources)
const author = !meta.url ? meta.author : {meta.author}
const licenseUrl = licenses[meta.license] ? licenses[meta.license].url : null